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::MinimumCapacity Property

 

Gets or sets the initial starting size for this table.

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

public:
property int MinimumCapacity {
	int get();
	void set(int value);
}

Property Value

Type: System::Int32

The initial starting size in rows of this table. The default is 50.

The MinimumCapacity allows the system to create an appropriate set of resources before fetching data. In a situation when performance is critical, setting this property can optimize performance.

The following example sets the MinimumCapacity of a DataTable.

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