摘要:
ArrayList能放任何你想放的东西 简单: int[,] myINT= new int[5,8]; ArrayList myList = new ArrayList(); myList.Add(myINT); ===============定义个结构体 struct Data { public int ID; public string Name; } ArrayList arr = new ... 阅读全文
摘要:
ListView中存放了大约1000条记录,每条记录有50多个字段,若用for循环将数据搬移到excel中速度异常缓慢,有没有快速算法?请高手指导~~ 用数组,或DataTable填充,速度贼快使用多个单元格写入的速度远快于对单元格进行逐个写入,因此是提高生成Excel速度的一个重要途径。示例代码 Excel.Application xApp = new Excel.Application... 阅读全文