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

定義

特定のオブジェクトが ICollection<T> 内にあるときに、最初に出現したものを削除します。 この実装は常に 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

ICollection<T> から削除するオブジェクト。

戻り値

項目が ICollection<T> から正常に削除された場合は、true。それ以外の場合は、false。 このメソッドは、項目が ICollection<T> に見つからない場合にも false を返します。

実装

例外

常にスローされます。コレクションは読み取り専用です。

注釈

実装は、オブジェクトの等価性を決定する方法によって異なる場合があります。たとえば、 List<T> は を使用 Defaultしますが SortedDictionary<TKey,TValue> 、ユーザーはキーの比較に使用する実装を指定 IComparer<T> できます。

適用対象

こちらもご覧ください