DataTable.MinimumCapacity Property
Definition
Gets or sets the initial starting size for this table.
public:
property int MinimumCapacity { int get(); void set(int value); };
[System.Data.DataSysDescription("DataTableMinimumCapacityDescr")]
public int MinimumCapacity { get; set; }
member this.MinimumCapacity : int with get, set
Public Property MinimumCapacity As Integer
Property Value
The initial starting size in rows of this table. The default is 50.
- Attributes
Examples
The following example sets the MinimumCapacity of a DataTable.
private void SetMinimumCapacity(DataTable table)
{
// Change the MinimumCapacity.
table.MinimumCapacity = 100;
}
Private Sub SetMinimumCapacity(ByVal table As DataTable)
' Change the MinimumCapacity.
table.MinimumCapacity = 100
End Sub
Remarks
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.