Skip to content

format

typescript
Dictionary.Clear()

class: Dictionary

description

Clears the list of keys and the list of values for this object.

parameter

param_nametypedescription

reture

typedescription
void

code example

typescript
let dictionary = new Dictionary<Number, Number>(Number);
dictionary.Clear();