List类型转换成DataTable c#将list类型转换成DataTable方法示例
人气:0想了解c#将list类型转换成DataTable方法示例的相关内容吗,在本文为您仔细讲解List类型转换成DataTable的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:list类型转,DataTable,下面大家一起来学习吧。
复制代码 代码如下:
/// <summary>
/// 将List转换成DataTable
/// </summary>
/// <typeparam name="T"></typeparam>
/// <param name="data"></param>
/// <returns></returns>
public static DataTable ToDataTable<T>(this IList<T> data)
{
PropertyDescriptorCollection properties = TypeDescriptor.GetProperties(typeof(T));
DataTable dt = new DataTable();
for (int i = 0; i < properties.Count; i++)
{
PropertyDescriptor property = properties[i];
dt.Columns.Add(property.Name, property.PropertyType);
}
object[] values = new object[properties.Count];
foreach (T item in data)
{
for (int i = 0; i < values.Length; i++)
{
values[i] = properties[i].GetValue(item);
}
dt.Rows.Add(values);
}
return dt;
}
加载全部内容