Determines whether the Tree contains a specific value.

 

   

Syntax
 

[C#]
virtual bool ContainsValue(TVal value)

[Visual Basic]
Overridable Function ContainsValue(value As TVal) As Boolean

 

   

Params
 
Name Description
value The value to locate.
return True if the Tree contains an element with the specified value otherwise false.

 

   

Notes
 

Determines whether the Tree contains a specific value.

 

   

Example
 
None.