码迷,mamicode.com
首页 > 编程语言 > 详细

[C#] DataTable 排序

时间:2017-10-12 20:35:09      阅读:297      评论:0      收藏:0      [点我收藏+]

标签: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#] DataTable 排序

标签:c#   tab   排序   desc   blog   logs   ota   div   table   

原文地址:http://www.cnblogs.com/linhuide/p/7657653.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!