BaseCollection.IsReadOnly Property

Definition

Gets a value indicating whether the collection is read-only.

public:
 property bool IsReadOnly { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool IsReadOnly { get; }
[<System.ComponentModel.Browsable(false)>]
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean

Property Value

This property is always false.

Attributes

Remarks

The collections that derive from the BaseCollection class are always writable, which is why this property always returns false.

Applies to