AccessProviderSample.DatabaseTableInfo.DatabaseTableInfo C# (CSharp) Method

DatabaseTableInfo() public method

Constructor.
public DatabaseTableInfo ( DataRow row, string name, int rowCount, DataColumnCollection columns ) : System
row System.Data.DataRow The row definition.
name string The table name.
rowCount int The number of rows in the table.
columns System.Data.DataColumnCollection Information on the column tables.
return System
        public DatabaseTableInfo(DataRow row, string name, int rowCount,
            DataColumnCollection columns)
        {
            Name = name;
            Data = row;
            RowCount = rowCount;
            Columns = columns;
        }
DatabaseTableInfo