Search
CollectionBase(T).Contains Method
See Also
 





Determines whether an element is in the collection.

Namespace: MindFusion.Diagramming
Assembly: MindFusion.Diagramming

 Syntax

C#  Copy Code

public bool Contains (
    T item
)

Visual Basic  Copy Code

Public Function Contains( _
    item As T _
) As Boolean

 Parameters

item

The object to locate in the collection.

 Return Value

true if item is found in the collection; otherwise, false.

 See Also