摘要: public static IList<T> DataTableToIList<T>(DataTable dt) { if (dt == null) return null; DataTable p_Data = dt; // 返回值初始化 IList<T> result = new List<T> 阅读全文
posted @ 2020-08-16 01:07 沐雪架构师 阅读(885) 评论(0) 推荐(0)