StringCollection.IsReadOnly 属性

定义

获取一个值,该值指示 StringCollection 是否为只读。

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

属性值

此属性始终返回 false

实现

注解

StringCollection 实现 属性, IsReadOnly 因为 接口需要它 System.Collections.IList

在创建只读集合后,该集合不允许添加、移除或修改元素。

只读集合只是一个集合,其中包含阻止修改集合的包装器;因此,如果对基础集合进行了更改,只读集合将反映这些更改。

实例 StringCollection 始终可写。

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

适用于