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
摘要:
var wk = ExcelNPOIUnit.GetWorkbook(logname); var sheet = wk.GetSheet("Sheet1"); int rowindex = 2; int cellindex = 0; foreach (var item in list) { IRow 阅读全文