摘要:
#region to datatable public DataTable ToTable() { return this.ToTable(null, new string[0]); } public DataTable ToTable(string tableName) { return this.ToTable(tableName, new string[0]); } public DataTable ToTable(string tableName, params string[] columnNames) { if (columnNames == null) { throw new A 阅读全文