DataTable.MinimumCapacity Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the initial starting size for this table.
public:
property int MinimumCapacity { int get(); void set(int value); };
public int MinimumCapacity { get; set; }
[System.Data.DataSysDescription("DataTableMinimumCapacityDescr")]
public int MinimumCapacity { get; set; }
member this.MinimumCapacity : int with get, set
[<System.Data.DataSysDescription("DataTableMinimumCapacityDescr")>]
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.