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

要从集合中移除的对象。

返回

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

实现

例外

在所有情况下。

注解

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

适用于