System Namespace Array Class
Returns a value indicating whether the Array is read-only.
[ VB ]
<Serializable>
Overridable Public ReadOnly Property IsReadOnly As Boolean _
Implements IList.IsReadOnly
[ C# ]
[Serializable]
public virtual bool IsReadOnly {get;}
[ C++ ]
[Serializable]
public: __property virtual bool get_IsReadOnly ( );
[JScript ]
public Serializable
function get IsReadOnly ( ) : Boolean;
This property is always false for all arrays.
IList.IsReadOnly
Array implements the IsReadOnly property because it is required by the System.Collections.IList interface.
If you require a read-only collection, use a System.Collections class that implements the System.Collections.IList interface.
An array that is read-only does not allow the addition, removal, or modification of elements after the array is created.
Array Members System.Collections.IList System.Collections