or
DataTable
dtStudent = new DataTable();
dtStudent.Columns.Add(
"Date", typeof(DateTime));
dtStudent.Columns.Add(
"Group", typeof(string));
dtStudent.Columns.Add(
"Score", typeof(double));
dtStudent.Rows.Add(
"2013-01-12", "Drawing", 25.0);
dtStudent.Rows.Add(
"2013-01-12", "Music", 10.0);
//date2
dtStudent.Rows.Add(
"2013-01-13", "Drawing", 30.0);
dtStudent.Rows.Add(
"2013-01-13", "Music", 11.0);
//date3
dtStudent.Rows.Add(
"2013-01-14", "Drawing", 28.0);
dtStudent.Rows.Add(
"2013-01-11", "Dance", 40.0);