Gets the value associated with the specified key.

 

   

Syntax
 

[C#]
virtual bool TryGetValue(string key, out value)
virtual bool TryGetValue(TKey key, out value)

 

   

Params
 
Name Description
key The key of the value to get.
value When this method returns this contains the value associated with the specified key. If the key was not found this contains the default value for the type of the value.
return True if the DictElement contains the specified key otherwise false.

 

   

Notes
 

Gets the value associated with the specified key.

 

   

Example
 
None.