Lookup<TKey,TElement>.Contains(TKey) Methode

Definition

Bestimmt, ob ein angegebener Schlüssel im Lookup<TKey,TElement> vorhanden ist.

public:
 virtual bool Contains(TKey key);
public bool Contains (TKey key);
abstract member Contains : 'Key -> bool
override this.Contains : 'Key -> bool
Public Function Contains (key As TKey) As Boolean

Parameter

key
TKey

Der Schlüssel, der im Lookup<TKey,TElement> gesucht werden soll.

Gibt zurück

true, wenn key in der Lookup<TKey,TElement> vorhanden ist, andernfalls false.

Implementiert

Beispiele

Im folgenden Beispiel wird veranschaulicht, wie sie verwenden Contains , um zu bestimmen, ob ein Lookup<TKey,TElement> einen angegebenen Schlüssel enthält. Dieses Codebeispiel ist Teil eines größeren Beispiels, das für die Lookup<TKey,TElement>-Klasse bereitgestellt wird.

// Determine if there is a key with the value 'G' in the Lookup.
bool hasG = lookup.Contains('G');
' Determine if there is a key with the value 'G' in the Lookup.
Dim hasG As Boolean = lookup.Contains("G"c)

Gilt für: