摘要:
首先引用: COM中的 Microsoft Excel 14.0 Object Library接着引用: using Microsoft.Office.Interop.Excel; using Microsoft.Office.Core; 1 public void ExecutePrint(Stu 阅读全文
摘要:
IComparer<T> 这是一个接口,是用来给对象中的某一个属性经行排序 1 class NameDESC:IComparer<StudentExt> 2 { 3 public int Compare(StudentExt x,StudentExt y) 4 { 5 return y.Studen 阅读全文
摘要:
1 public string SerializeObject(object obj) 2 { 3 //将object类型对象(注:必须是可序列化的对象)转换为二进制序列字符串 4 IFormatter formatter=new BinaryFormatter(); 5 string result 阅读全文