111,097
社区成员




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");