摘要: 首先引用: COM中的 Microsoft Excel 14.0 Object Library接着引用: using Microsoft.Office.Interop.Excel; using Microsoft.Office.Core; 1 public void ExecutePrint(Stu 阅读全文
posted @ 2019-07-05 17:36 学海无涯,天道酬勤 阅读(482) 评论(0) 推荐(0) 编辑
摘要: IComparer<T> 这是一个接口,是用来给对象中的某一个属性经行排序 1 class NameDESC:IComparer<StudentExt> 2 { 3 public int Compare(StudentExt x,StudentExt y) 4 { 5 return y.Studen 阅读全文
posted @ 2019-07-05 14:51 学海无涯,天道酬勤 阅读(1398) 评论(0) 推荐(0) 编辑
摘要: 1 public string SerializeObject(object obj) 2 { 3 //将object类型对象(注:必须是可序列化的对象)转换为二进制序列字符串 4 IFormatter formatter=new BinaryFormatter(); 5 string result 阅读全文
posted @ 2019-07-05 11:59 学海无涯,天道酬勤 阅读(448) 评论(0) 推荐(0) 编辑