ReadOnlyDictionary<TKey,TValue>.ValueCollection.ICollection<TValue>.Remove 方法

定义

在所有情况下都会引发 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

要从集合中移除的对象。

返回

如果从集合中成功移除了 true,则为 item;否则为 false。 如果在原始集合中找不到该项,则此方法也会返回 false

实现

例外

在所有情况下。

注解

此成员是显式接口成员的实现。 它只能在 ReadOnlyDictionary<TKey,TValue>.ValueCollection 实例被强制转换为 ICollection<T> 接口时使用。 接口 ICollection<T> 指定,如果实现接口的 Remove 集合是只读的,则方法应引发 NotSupportedException 异常。

适用于