共用方式為


OrderedDictionary<TKey,TValue>.Remove 方法

定義

多載

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

適用於