System.Data.DataTable.DataTable C# (CSharp) Method

DataTable() public method

Intitalizes a new instance of the class with the specified table name.
public DataTable ( string tableName ) : System.Collections
tableName string
return System.Collections
        public DataTable(string tableName) : this()
        {
            _tableName = tableName == null ? "" : tableName;
        }

Same methods

DataTable::DataTable ( ) : System.Collections
DataTable::DataTable ( SerializationInfo info, StreamingContext context ) : System.Collections
DataTable::DataTable ( string tableName, string tableNamespace ) : System.Collections
DataTable