|
|
|
|
|
|
|
Determines whether the dictionary contains an element with a specific
name.
|
|
|
|
|
[C#]
bool Contains(string name)
[Visual Basic]
Function Contains(name As String) As Boolean
|
|
|
|
|
Name |
Description |
name |
The element to locate in the dictionary. |
return |
True if the name is found, otherwise false. |
|
|
|
|
|
Determines whether the dictionary contains an element with a specific
name.
|
|
|
|
|
|