首页 > 其他 > 详细

如何将List转换为DataTable

时间:2014-04-13 23:48:29      阅读:778      评论:0      收藏:0      [点我收藏+]

 

bubuko.com,布布扣
 1    public static DataTable ToDataTable(List<NetworkAdapterInformation> list)
 2         {
 3             DataTable result = new DataTable();
 4             if (list.Count > 0)
 5             {
 6                 PropertyInfo[] propertys = list[0].GetType().GetProperties();
 7                 foreach (PropertyInfo pi in propertys)
 8                 {
 9                     result.Columns.Add(pi.Name, pi.PropertyType);
10                 }
11 
12                 for (int i = 0; i < list.Count; i++)
13                 {
14                     ArrayList tempList = new ArrayList();
15                     foreach (PropertyInfo pi in propertys)
16                     {
17                         object obj = pi.GetValue(list[i], null);
18                         tempList.Add(obj);
19                     }
20                     object[] array = tempList.ToArray();
21                     result.LoadDataRow(array, true);
22                 }
23             }
24             return result;
25         }
bubuko.com,布布扣

重要:针对属性get set提供的反射.

(本文转载至互联网,抱歉找不到原链接,如有争议,请随时联系我删除)

如何将List转换为DataTable,布布扣,bubuko.com

如何将List转换为DataTable

原文:http://www.cnblogs.com/csharpbird/p/3662796.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!