Determines whether the dictionary contains an element with a specific name.

 

   

Syntax
 

[C#]
bool Contains(string name)

 

   

Params
 
Name Description
name The element to locate in the dictionary.
return True if the name is found, otherwise false.

 

   

Notes
 

Determines whether the dictionary contains an element with a specific name.

 

   

Example
 

None.