format
typescript
Dictionary.Get(key)class: Dictionary
description
Returns the value associated with the specified key.
parameter
| param_name | type | description |
|---|---|---|
| key | K|null | The key name. |
reture
| type | description |
|---|---|
V|undefined |
code example
typescript
let dictionaryObj = new Dictionary<Obj, Number>(Obj);
let obj1 = new Obj(1);
return dictionaryObj.Contains(obj1)