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

定義

特定のオブジェクトが ICollection<T> 内にあるときに、最初に出現したものを削除します。 この実装は常に NotSupportedException をスローします。

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

パラメーター

item
TValue

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

戻り値

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

実装

例外

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

注釈

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

適用対象

こちらもご覧ください