Dictionary<TKey,TValue>.ValueCollection.ICollection<TValue>.IsReadOnly Propriété

Définition

Obtient une valeur indiquant si ICollection<T> est en lecture seule.

property bool System::Collections::Generic::ICollection<TValue>::IsReadOnly { bool get(); };
bool System.Collections.Generic.ICollection<TValue>.IsReadOnly { get; }
member this.System.Collections.Generic.ICollection<TValue>.IsReadOnly : bool
 ReadOnly Property IsReadOnly As Boolean Implements ICollection(Of TValue).IsReadOnly

Valeur de propriété

true si ICollection<T> est en lecture seule ; sinon, false. Dans l'implémentation par défaut de Dictionary<TKey,TValue>.ValueCollection, cette propriété retourne toujours true.

Implémente

Remarques

Une collection en lecture seule n’autorise pas l’ajout, la suppression ou la modification d’éléments après sa création.

La récupération de la valeur de cette propriété est une opération O(1).

S’applique à