• 将集合类转换成DataTable dodo


             /// 将集合类转换成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].GetType().GetProperties();
                    foreach (PropertyInfo pi in propertys)
                    {

                        Type colType = pi.PropertyType; if ((colType.IsGenericType) && (colType.GetGenericTypeDefinition() == typeof(Nullable<>))) //避免空值报错
                        {

                            colType = colType.GetGenericArguments()[0];

                        }

                        if (pi.Name != "DataTable_Action_")  //避免列要求有效的 DataType错误,主要是针对自定义数据类型
                        {

                            result.Columns.Add(new DataColumn(pi.Name, colType));
                        }

                    }

                    for (int i = 0; i < list.Count; i++)
                    {
                        ArrayList tempList = new ArrayList();
                        foreach (PropertyInfo pi in propertys)
                        {
                            if (pi.Name != "DataTable_Action_")//避免列要求有效的 DataType错误,主要是针对自定义数据类型

                            {
                                object obj = pi.GetValue(list[i], null) == null ? DBNull.Value : pi.GetValue(list[i], null); //避免空值报错

                                //object obj = pi.GetValue(list[i], null);
                                tempList.Add(obj);
                            }
                        }
                        object[] array = tempList.ToArray();
                        result.LoadDataRow(array, true);
                    }
                }
                return result;
            }

  • 相关阅读:
    EventLog实现事件日志操作
    可否控制<link type=text/css rel=stylesheet href=style.css>
    强制IE浏览器或WebBrowser控件使用指定版本显示网页2
    C#中的@符号
    C#运算符大全_各种运算符号的概述及作用
    调试时设置条件断点
    C语言:用字符读取流和输出流来读写入数据。(文本文件)
    建立完整的单向动态链表(包括初始化、创建、插入、删除、查找、销毁、输出)
    C语言:创建动态单向链表,创建完成后,输出每一个节点的数据信息。
    C语言:使用realloc函数对malloc或者calloc动态分配的内存大小进行扩展
  • 原文地址:https://www.cnblogs.com/zgqys1980/p/2128957.html
Copyright © 2020-2023  润新知