Array.IsFixedSize 属性

定义

获取一个值,该值指示 Array 是否具有固定大小。

public:
 property bool IsFixedSize { bool get(); };
public:
 virtual property bool IsFixedSize { bool get(); };
public bool IsFixedSize { get; }
public virtual bool IsFixedSize { get; }
member this.IsFixedSize : bool
Public ReadOnly Property IsFixedSize As Boolean
Public Overridable ReadOnly Property IsFixedSize As Boolean

属性值

Boolean

对于所有数组,此属性始终为 true

实现

注解

Array 实现 IsFixedSize 该属性,因为它需要 System.Collections.IList 接口。

具有固定大小的数组不允许在创建数组后添加或删除元素,但允许修改现有元素。

检索此属性的值的运算复杂度为 O(1)。

适用于

另请参阅