摘要:
public DataRow[] Select (string filterExpression,string sort,DataViewRowState recordStates)参数filterExpression要用来筛选行的条件。sort一个字符串,它指定列和排序方向。recordStatesDataViewRowState 值之一。返回值DataRow 对象的数组。示例private static void GetRowsByFilter(){ DataTable customerTable = new DataTable("Customers"); // Add 阅读全文