Lookup<TKey,TElement>.Contains(TKey) Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Determina se una chiave specificata è contenuta nell'oggetto Lookup<TKey,TElement>.
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
Parametri
- key
- TKey
Chiave da trovare nell’oggetto Lookup<TKey,TElement>.
Restituisce
true
se key
è compreso in Lookup<TKey,TElement>; in caso contrario, false
.
Implementazioni
Esempio
Nell'esempio seguente viene illustrato come usare Contains per determinare se un Lookup<TKey,TElement> oggetto contiene una chiave specificata. Questo esempio di codice fa parte di un esempio più grande fornito per la Lookup<TKey,TElement> classe.
// 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)