System.Data.XmlToDatasetMap.TableSchemaInfo.TableSchemaInfo C# (CSharp) Method

TableSchemaInfo() public method

public TableSchemaInfo ( DataTable tableSchema ) : System.Xml
tableSchema DataTable
return System.Xml
            public TableSchemaInfo(DataTable tableSchema)
            {
                TableSchema = tableSchema;
                ColumnsSchemaMap = new XmlNodeIdHashtable(tableSchema.Columns.Count);
            }
        }
XmlToDatasetMap.TableSchemaInfo