标签:c# tab 排序 desc blog logs ota div table
DataTable dt = new DataTable(); dt.Columns.Add("student_no"); dt.Columns.Add("student_name"); dt.Rows.Add("001", "June"); dt.Rows.Add("002", "zhang"); dt.Rows.Add("003", "jun"); dt.DefaultView.Sort = "student_no desc"; dt = dt.DefaultView.ToTable();
标签:c# tab 排序 desc blog logs ota div table
原文地址:http://www.cnblogs.com/linhuide/p/7657653.html