Array.IsReadOnly 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指示 Array 是否为只读。
public:
property bool IsReadOnly { bool get(); };
public:
virtual property bool IsReadOnly { bool get(); };
public bool IsReadOnly { get; }
public virtual bool IsReadOnly { get; }
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean
Public Overridable ReadOnly Property IsReadOnly As Boolean
属性值
对于所有数组,此属性始终为 false
。
实现
注解
Array 实现 IsReadOnly 该属性,因为它需要 System.Collections.IList 接口。 只读数组不允许在创建数组后添加、删除或修改元素。
如果需要只读集合,请使用 System.Collections 实现接口的 System.Collections.IList 类。
如果将数组 IList 强制转换或转换为接口对象,则 IList.IsReadOnly 属性返回 false
。 但是,如果将数组 IList<T> 强制转换或转换为接口,属性 IsReadOnly
将 true
返回。
检索此属性的值的运算复杂度为 O(1)。