Exemplo n.º 1
0
 public DataTable()
 {
     _Columns = new DataColumnCollection(this);
 }
Exemplo n.º 2
0
 public DataTable(string tableName)
 {
     _TableName = tableName;
     _Columns   = new DataColumnCollection(this);
 }