摘要: #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 阅读全文
posted @ 2011-04-16 15:39 leslie116 阅读(197) 评论(0) 推荐(0) 编辑