Gets whether an element is in the collection.
Syntax
'Declaration
Public Overridable Function Contains( _
ByVal As Object _
) As Boolean
'Usage
Dim instance As Elements
Dim element As Object
Dim value As Boolean
value = instance.Contains(element)
public virtual bool Contains(
object
)
Parameters
- element
- Element object
Return Value
true if it contains the element; false otherwise
See Also