BaseCollection.IsReadOnly プロパティ
定義
コレクションが読み取り専用かどうかを示す値を取得します。Gets a value indicating whether the collection is read-only.
public:
property bool IsReadOnly { bool get(); };
[System.ComponentModel.Browsable(false)]
public bool IsReadOnly { get; }
[<System.ComponentModel.Browsable(false)>]
member this.IsReadOnly : bool
Public ReadOnly Property IsReadOnly As Boolean
プロパティ値
このプロパティは常に false
です。This property is always false
.
- 属性
注釈
クラスから派生したコレクション BaseCollection は常に書き込み可能であるため、このプロパティは常にを返し false
ます。The collections that derive from the BaseCollection class are always writable, which is why this property always returns false
.