Dynamic Data Table
Dynamic?
The example table
ID
Name
Age
DataTable DT = new DataTable();
DT.Columns.Add("ID", typeof(int));
DT.Columns.Add("Name", typeof(string));
DT.Columns.Add("Age", typeof(int));
DT.Rows.Add(1, "John", 25);
DT.Rows.Add(2, "Smith", 30);
DT.Rows.Add(3, "Jane", 29); Data Typing
Header solve
Data Table methods
CSV
Static Values
"Special" Columns
Data Metrics
Last updated

