OrderedDictionary<TKey,TValue>.KeyCollection.ICollection<TKey>.Remove 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
從 ICollection<T>移除第一個出現的特定物件。
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
要從 ICollection<T>移除的物件。
傳回
如果已成功從 ICollection<T>移除 item
,true
;否則,false
。 如果在原始 ICollection<T>中找不到 item
,這個方法也會傳回 false
。