[This is preliminary documentation and is subject to change.]

Gets a value indicating whether the ListWithEvents<(Of <(<'T>)>)> is read-only (always false).

Namespace: Tools.CollectionsT.GenericT
Assembly: Tools (in Tools.dll) Version: 1.5.3.38916 (1.5.3.38916)

Syntax

C#
[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public override sealed bool IsReadOnly { get; }
Visual Basic
<EditorBrowsableAttribute(EditorBrowsableState.Never)> _
Public Overrides NotOverridable ReadOnly Property IsReadOnly As Boolean
	Get
Visual C++
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public:
virtual property bool IsReadOnly {
	bool get () override sealed;
}
F#
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
abstract IsReadOnly : bool
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
override IsReadOnly : bool
JScript
override final function get IsReadOnly () : boolean

Return Value

Always false because ListWithEvents<(Of <(<'T>)>)> is not read-only

Implements

ICollection<(Of <(<'T>)>)>..::..IsReadOnly

See Also