public EbDataTable(string tablename) { this.TableName = tablename; this.Columns = new ColumnColletion(this); this.Rows = new RowColletion(this); }
public EbDataTable() { this.Columns = new ColumnColletion(this); this.Rows = new RowColletion(this); }