Indicates whether the given instance is read-only or not

Namespace: Iesi.Collections.Generic
Assembly: Iesi.Collections (in Iesi.Collections.dll) Version: 1.0.1.0 (3.2.0.4000)

Syntax

C#
public virtual bool IsReadOnly { get; }
Visual Basic
Public Overridable ReadOnly Property IsReadOnly As Boolean
	Get
Visual C++
public:
virtual property bool IsReadOnly {
	bool get ();
}

Field Value

trueTruetruetrue (True in Visual Basic) if the ISet is read-only; otherwise, falseFalsefalsefalse (False in Visual Basic). In the default implementation of Set, this property always returns false.

Implements

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

See Also