摘要:
详解C#中的反射 http://blog.csdn.net/educast/article/details/2894892 两个现实中的例子:1、B超:大家体检的时候大概都做过B超吧,B超可以透过肚皮探测到你内脏的生理情况。这是如何做到的呢?B超是B型超声波,它可以透过肚皮通过向你体内发射B型超声波 阅读全文
摘要:
private void InitDicData(List<BD_DataDictionary> listDic, List<OM_Enterprise> listAll, string cDicType) { var listTemp = listDic.Where(p => p.字典类型.Equ 阅读全文
摘要:
在项目下新建Content目录,然后把src,start目录拷贝进去,再建一个HOMEController的类,再建一个对应的视图,将如下代码添加: <script> location.href = "../././content/start";</script>> 项目即可运行。 阅读全文
摘要:
封装数据时必须使用DateEdit控件的Text属性进行判断,如果为EditValue会报错,具体如下: 开始日期 = dStartDate.Text.Trim().Length == 0 ? null : (DateTime?)Convert.ToDateTime(dStartDate.Text. 阅读全文
摘要:
用 NPOI 导入 Excel 时,如果不对单元格的类型进行判断,当读取日期型单元格式将返回一串数字 ICell cell = row.GetCell(j); //Cell为非NUMERIC时,调用IsCellDateFormatted方法会报错,所以先要进行类型判断 if (cell.CellTy 阅读全文
摘要:
1. 把gregn6.DLL放到C:\windows|system32下。 2. 运行cmd,右击以管理员的身份运行。 3. 输入:regsvr32 gregn6.DLL 回车。 阅读全文
摘要:
在Entiites里面创建 using System; using System.ComponentModel.DataAnnotations.Schema; using System.Configuration; using System.Data.Entity; using System.Lin 阅读全文
摘要:
EFDBEntities类 using System; using System.ComponentModel.DataAnnotations.Schema; using System.Configuration; using System.Data.Entity; using System.Lin 阅读全文
摘要:
/// <summary> /// 转换List到DataTable /// </summary> /// <param name="list"></param> /// <returns></returns> public DataTable GenericToDataTable<T>(IList 阅读全文
摘要:
Type type = (Type)(x.GetType()); var obj = Activator.CreateInstance(type, true); 阅读全文