Dictionary Operation Procedures

Prev Next

Operation Name

Description

Add

Adds an item to dictionary with specified key. Key is string data type. If an item already exists with the specified key, the item's value will get overwritten by the new value.

GetKeys

Gets all keys in the dictionary as list of strings

GetValue

Gets the item from dictionary for specified key. Key is string data type

GetValues

Gets all items from dictionary as list

Remove

Removes entry from dictionary