Click or drag to resize

OrderedDictionaryTKey, TValueIsReadOnly Property

Gets a value indicating whether the OrderedDictionary<TKey,TValue> collection is read-only.

Namespace:  Ifs.Fnd.Core
Assembly:  Ifs.Fnd.Core (in Ifs.Fnd.Core.dll) Version: 4.52.10.0 (10.2.2.9999)
Syntax
C#
public bool IsReadOnly { get; }

Property Value

Type: Boolean
if the OrderedDictionary<TKey,TValue> is read-only; otherwise, . The default is .

Implements

IDictionaryIsReadOnly
ICollectionTIsReadOnly
Remarks
A collection that is read-only does not allow the addition, removal, or modification of elements after the collection is created.

A collection that is read-only is simply a collection with a wrapper that prevents modification of the collection; therefore, if changes are made to the underlying collection, the read-only collection reflects those changes.

See Also