OrderedDictionary<TKey,TValue>.Remove 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Remove(TKey) |
從 IDictionary<TKey,TValue>移除具有指定索引鍵的專案。 |
Remove(TKey, TValue) |
從 OrderedDictionary<TKey,TValue> 中移除具有指定索引鍵的值,並將專案複製到 value 參數。 |
Remove(TKey)
從 IDictionary<TKey,TValue>移除具有指定索引鍵的專案。
public:
virtual bool Remove(TKey key);
public bool Remove (TKey key);
abstract member Remove : 'Key -> bool
override this.Remove : 'Key -> bool
Public Function Remove (key As TKey) As Boolean
參數
- key
- TKey
要移除之專案的索引鍵。
傳回
如果已成功移除專案,true
;否則,false
。 如果在原始 IDictionary<TKey,TValue>中找不到 key
,這個方法也會傳回 false
。
實作
適用於
Remove(TKey, TValue)
從 OrderedDictionary<TKey,TValue> 中移除具有指定索引鍵的值,並將專案複製到 value 參數。
public:
bool Remove(TKey key, [Runtime::InteropServices::Out] TValue % value);
public bool Remove (TKey key, out TValue value);
member this.Remove : 'Key * 'Value -> bool
Public Function Remove (key As TKey, ByRef value As TValue) As Boolean
參數
- key
- TKey
要移除之專案的索引鍵。
- value
- TValue
已移除的專案。
傳回
如果成功找到並移除專案,true
;否則,false
。