**METHOD:** `d.Exists(key)`
**Description**
Teste l’existence d’une clé dans un `Dictionary`.
**Syntax**
`d.Exists(key)`
**Paramètres**
– `key` : Clé à tester.
**Retour**
True/False.
**Exemples**
« `vb
Dim d
Set d = CreateObject(« Scripting.Dictionary »)
d.Add « a », 1
WScript.Echo d.Exists(« a »)
« `
**Voir aussi**
`Dictionary.Add`