DataTable.MinimumCapacity Propriedade
Definição
Obtém ou define o tamanho inicial para essa tabela.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
Valor da propriedade
O tamanho inicial em linhas dessa tabela.The initial starting size in rows of this table. O padrão é 50.The default is 50.
- Atributos
Exemplos
O exemplo a seguir define o MinimumCapacity de um DataTable .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
Comentários
O MinimumCapacity permite que o sistema crie um conjunto apropriado de recursos antes de buscar dados.The MinimumCapacity allows the system to create an appropriate set of resources before fetching data. Em uma situação em que o desempenho é crítico, a definição dessa propriedade pode otimizar o desempenho.In a situation when performance is critical, setting this property can optimize performance.