摘要: 做开发时,积累很重要,每天总是写同样的东西会很烦人的事,所以有空的时候花一点时间来整理代码。 public class ExcelImport { Thread thread = null; /// <summary> /// 此用于生成Excel /// </summary> public ExcelImport() { thread=new Thread(new ThreadStart(createExcel)); } #region 生成Exe... 阅读全文
posted @ 2013-06-11 13:06 Blue_Dream 阅读(188) 评论(0) 推荐(0) 编辑