Array.IsFixedSize Propriedade
Definição
public:
property bool IsFixedSize { bool get(); };
public:
virtual property bool IsFixedSize { bool get(); };
public bool IsFixedSize { get; }
public virtual bool IsFixedSize { get; }
member this.IsFixedSize : bool
Public ReadOnly Property IsFixedSize As Boolean
Public Overridable ReadOnly Property IsFixedSize As Boolean
Valor da propriedade
Esta propriedade é sempre true para todas as matrizes.This property is always true for all arrays.
Implementações
Comentários
Array implementa a IsFixedSize propriedade porque ela é exigida pela System.Collections.IList interface.Array implements the IsFixedSize property because it is required by the System.Collections.IList interface.
Uma matriz com um tamanho fixo não permite a adição ou remoção de elementos depois que a matriz é criada, mas permite a modificação de elementos existentes.An array with a fixed size does not allow the addition or removal of elements after the array is created, but it allows the modification of existing elements.
A recuperação do valor dessa propriedade é uma operação O(1).Retrieving the value of this property is an O(1) operation.