111,120
社区成员
发帖
与我相关
我的任务
分享
DataTable t = new DataTable();
t.Columns.Add("No", typeof(int));
t.Columns.Add("Name", typeof(string));
t.Rows.Add(1,"Kevin");
t.Rows.Add(2, "Alison");
t.Rows.Add(3, "Sophie");
t.Rows.Add(4, "Vicky");
t.Rows.Add(5, "Cherry");
DataRow[] rows = t.Select("No>=3");