System Namespace Array Class
Returns a value indicating whether the Array has a fixed size.
[ VB ]
<Serializable>
Overridable Public ReadOnly Property IsFixedSize As Boolean _
Implements IList.IsFixedSize
[ C# ]
[Serializable]
public virtual bool IsFixedSize {get;}
[ C++ ]
[Serializable]
public: __property virtual bool get_IsFixedSize ( );
[JScript ]
public Serializable
function get IsFixedSize ( ) : Boolean;
This property is always true for all arrays.
IList.IsFixedSize
Array implements the IsFixedSize property because it is required by the System.Collections.IList interface.
An array with a fixed size does not allow the addition or removal of elements after the array is created, but it allows the modification of existing elements.
Array Members System.Collections.IList