I would like to store a DateTime in two column but when I tried that and run my app no data are displayed
This is my code::
DataTable dt = new DataTable();
//Add three columns to the DataTable
dt.Columns.Add("Date");
dt.Columns.Add("Volume1");
dt.Columns.Add("Volume2");
DataRow dr;
//Add rows to the table which contains some random data for demonstration
dr = dt.NewRow();
dr["Date"] = "Jan";
dr["Volume1"] = new DateTime(2010,10,10);
dr["Volume2"] = new DateTime(2011,10,10);
dt.Rows.Add(dr);`