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
摘要:
EF BB BF UTF-8(可变长1-4字节,兼容ASCII) ,带BOM形式的FE FF UTF-16/UCS-2, little endian(定长2字节)FF FE UTF-16/UCS-2, big endian(定长2字节)FF FE 00 00 UTF-32/UCS-4, little 阅读全文
摘要:
Public Sub Compare(fullname As String, sheet As String) Dim conn, sql, rows, i, cellContents ,rowIndex, colIndex rowIndex = 2 colIndex = getColumnIndex("Name") '获取目标表数据 Set conn = Cre... 阅读全文
摘要:
static AutoResetEvent are = new AutoResetEvent(true);//初始化为开 static void Main(string[] args) { //如果这里加上这句 are.Reset(); 则会把初始化的开,改为关 for (int i = 0; i ... 阅读全文