list 转换成datatable
2018-06-17 19:52:44来源:未知 阅读 ()
感谢网上的一位朋友
1 /// <summary> 2 60 /// 将集合类转换成DataTable 3 61 /// </summary> 4 62 /// <param name="list">集合</param> 5 63 /// <returns></returns> 6 64 public static DataTable ToDataTable(IList list) 7 65 { 8 66 DataTable result = new DataTable(); 9 67 if (list.Count > 0) 10 68 { 11 69 PropertyInfo[] propertys = list[0].GetType().GetProperties(); 12 70 foreach (PropertyInfo pi in propertys) 13 71 { 14 72 result.Columns.Add(pi.Name, pi.PropertyType); 15 73 } 16 74 17 75 for (int i = 0; i < list.Count; i++) 18 76 { 19 77 ArrayList tempList = new ArrayList(); 20 78 foreach (PropertyInfo pi in propertys) 21 79 { 22 80 object obj = pi.GetValue(list[i], null); 23 81 tempList.Add(obj); 24 82 } 25 83 object[] array = tempList.ToArray(); 26 84 result.LoadDataRow(array, true); 27 85 } 28 86 } 29 87 return result; 30 88 }
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- Delphi10.3的ListView学习(大图标) 2020-06-05
- TChart-数据编辑(TChartListBox,TeeCommander) 2020-02-21
- delphi TStringList 用法详解 2019-10-12
- .Net程序员玩转Android开发--ListView单击事件 2018-06-21
- 初始ASP.NET数据控件【续 DataList】 2018-06-21
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash