DataSet 转换成List
摘要:public List<T> DataSetToList<T>(DataSet ds, int tableIndext) { //确认参数有效 if (ds == null || ds.Tables.Count <= 0 || tableIndext < 0) { return null; } Da
阅读全文
posted @ 2017-05-24 10:14
posted @ 2017-05-24 10:14