小格
没有目标的人,是在帮那些有目标的人完成目标。
摘要: /// <summary> /// 将集合类转换成DataTable /// </summary> /// <param name="list">集合</param> /// <returns></returns> public static DataTable ToDataTable(IList list) { DataTable result = new DataTable(); if (list.Count > 0) { PropertyInfo[] propertys = list[0]. 阅读全文
posted @ 2012-10-24 14:51 小格 阅读(169) 评论(0) 推荐(0) 编辑