What you do today can improve all your tomorrows.
Bear in mind: S = Single Responsibility Principle
O = Opened Closed Principle
L = Liskov Substitution Principle
I = Interface Segregation Principle
D = Dependency Inversion Principle
摘要:
using (ExcelPackage excelPackage = new ExcelPackage(new FileInfo(xlsxfullname))){ ExcelWorkbook wp = excelPackage.Workbook; ExcelWorksheet sh = wp.Worksheets[sheetname]; int col = 1; //1 为起始列 int rowindex = 1; //1为起始行 while (... 阅读全文