Skip to content

format

typescript
Dictionary.Get(key)

class: Dictionary

description

Returns the value associated with the specified key.

parameter

param_nametypedescription
keyK|nullThe key name.

reture

typedescription
V|undefined

code example

typescript
let dictionaryObj = new Dictionary<Obj, Number>(Obj);
let obj1 = new Obj(1);
return dictionaryObj.Contains(obj1)