Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

DataTable Constructor ()

 

Initializes a new instance of the DataTable class with no arguments.

Namespace:   System.Data
Assembly:  System.Data (in System.Data.dll)

public:
DataTable()

The constructor sets initial values for all properties of the DataTable object. The following table shows the properties and their default values. When an instance of DataTable is created, the following read/write properties are set to initial values.

Property

Default value

CaseSensitive

Same as the parent DataSet, if it belongs to one. Otherwise, false.

DisplayExpression

Empty string ("")

Locale

Same as the parent DataSet object's CultureInfo (returned by the Locale property); if no parent exists, the default is the current system CultureInfo.

MinimumCapacity

50 rows.

You can change the value for any of these properties through a separate call to the property.

The following example creates a new DataTable with DataColumn and DataRow, and displays it in a DataGridView control.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show:
© 2017 Microsoft