ReadOnlyDictionary<TKey,TValue>.KeyCollection.ICollection<TKey>.Remove メソッド

定義

常に NotSupportedException 例外をスローします。

 virtual bool System.Collections.Generic.ICollection<TKey>.Remove(TKey item) = System::Collections::Generic::ICollection<TKey>::Remove;
bool ICollection<TKey>.Remove (TKey item);
abstract member System.Collections.Generic.ICollection<TKey>.Remove : 'Key -> bool
override this.System.Collections.Generic.ICollection<TKey>.Remove : 'Key -> bool
Function Remove (item As TKey) As Boolean Implements ICollection(Of TKey).Remove

パラメーター

item
TKey

コレクションから削除するオブジェクト。

戻り値

item がコレクションから正常に削除された場合は true。それ以外の場合は false。 このメソッドは、item が元のコレクションに見つからない場合にも false を返します。

実装

例外

すべての場合。

注釈

このメンバーは、明示的なインターフェイス メンバーの実装です。 これは、ReadOnlyDictionary<TKey,TValue>.KeyCollection のインスタンスが ICollection<T> インターフェイスにキャストされる場合のみ、使用できます。 インターフェイスは ICollection<T> 、インターフェイスを実装するコレクションが Remove 読み取り専用である場合に、メソッドが例外をスロー NotSupportedException することを指定します。

適用対象