ImmutableDictionary<TKey,TValue>.Builder.Contains 方法

定義

判斷不可變的字典是否包含特定值。

public:
 virtual bool Contains(System::Collections::Generic::KeyValuePair<TKey, TValue> item);
public bool Contains (System.Collections.Generic.KeyValuePair<TKey,TValue> item);
abstract member Contains : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> bool
override this.Contains : System.Collections.Generic.KeyValuePair<'Key, 'Value> -> bool
Public Function Contains (item As KeyValuePair(Of TKey, TValue)) As Boolean

參數

item
KeyValuePair<TKey,TValue>

要在字典中尋找的物件。

傳回

如果在字典中找到 item 則為 true,否則為 false

實作

適用於