format
typescript
Dictionary.Contains(key)class: Dictionary
description
Whether the specified key is contained in the dictionary.
parameter
| param_name | type | description |
|---|---|---|
| key | K|null | The key to check. |
reture
| type | description |
|---|---|
boolean |
code example
typescript
let dictionary = new Dictionary<Number, Number>(Number);
dictionary.Contains(1);