ReadOnlyCollection<T>.ICollection<T>.Remove(T) メソッド

定義

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

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

パラメーター

value
T

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

戻り値

truevalue から正常に削除された場合は ICollection<T>。それ以外の場合は false

実装

例外

常にスローされます。

注釈

このメンバーは、明示的なインターフェイス メンバーの実装です。 これは、ReadOnlyCollection<T> のインスタンスが ICollection<T> インターフェイスにキャストされる場合のみ、使用できます。

適用対象