ImmutableSortedDictionary<TKey,TValue>.Remove(TKey) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从不可变排序字典中移除具有指定值的元素。
public:
System::Collections::Immutable::ImmutableSortedDictionary<TKey, TValue> ^ Remove(TKey value);
public System.Collections.Immutable.ImmutableSortedDictionary<TKey,TValue> Remove (TKey value);
member this.Remove : 'Key -> System.Collections.Immutable.ImmutableSortedDictionary<'Key, 'Value>
Public Function Remove (value As TKey) As ImmutableSortedDictionary(Of TKey, TValue)
参数
- value
- TKey
要移除的元素的值。
返回
已移除指定元素的新不可变字典;如果在字典中找不到指定的值,则为此实例。