Gets a value indicating whether the Array is read-only.
Assembly: mscorlib (in mscorlib.dll)
Syntax . . :: . IsReadOnly
Public ReadOnly Property IsReadOnly As Booleanpublic bool IsReadOnly { get; }public:
virtual property bool IsReadOnly {
bool get () sealed;
}abstract IsReadOnly : bool
override IsReadOnly : boolImplements
IList Remarks
Array implements the IsReadOnly property because it is required by the System.Collections
If you require a read-only collection, use a System.Collections class that implements the System.Collections
An array that is read-only does not allow the addition, removal, or modification of elements after the array is created.
Retrieving the value of this property is an O(1) operation.
Platforms
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.