C# 把List 集合转换成DataTable
程序员文章站
2022-09-05 14:51:09
/// /// 将List集合 转换成 DataTable /// /// sellerSearchDealList是我自己定义的一个类 public static DataTable ListToTable(List
/// <summary>
/// 将List集合 转换成 DataTable
/// </summary>
/// <param name="entitys">sellerSearchDealList是我自己定义的一个类</param>
public static DataTable ListToTable(List<object> entitys)
{
DataTable dtresult = new DataTable();
if (entitys == null || entitys.Count < 1)
{
throw new Exception("空");
}
else
{
PropertyInfo[] propertys = entitys[0].GetType().GetProperties();
foreach (PropertyInfo pi in propertys)
{
dtresult.Columns.Add(pi.Name, pi.PropertyType);
}
for (int i = 0; i < entitys.Count; i++)
{
ArrayList tenpList = new ArrayList();
foreach (PropertyInfo pi in propertys)
{
object obj = pi.GetValue(entitys[i], null);
tenpList.Add(obj);
}
object[] array = tenpList.ToArray();
dtresult.LoadDataRow(array, true);
}
}
return dtresult;
}
本文地址:https://blog.csdn.net/weixin_40362806/article/details/108992669
推荐阅读
-
【转载】C#中List集合使用RemoveRange方法移除指定索引开始的一段元素
-
C# convert json to datatable,convert list to datatable
-
C#中List集合使用Max()方法查找到最大值的实例
-
【转载】C#中ArrayList集合类和List集合类的比较
-
C#实现集合转换成json格式数据的方法
-
C#实现DataTable,List和Json转换的方法
-
【转载】C#中List集合使用Contains方法判断是否包含某个对象
-
【转载】C#中List集合中Last和LastOrDefault方法的差别
-
【转载】C#中List集合SingleOrDefault和FirstOrDefault方法有何不同
-
【转载】C#中使用Average方法对List集合中相应元素求平均值