ObservableCollectionTContains Method
|
Determines whether an object is in the collection.
Namespace:
DXFReaderNET.Collections
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
Syntax public bool Contains(
T item
)
Public Function Contains (
item As T
) As Boolean
public:
virtual bool Contains(
T item
) sealed
abstract Contains :
item : 'T -> bool
override Contains :
item : 'T -> bool
METHOD Contains(
item AS T
) AS LOGIC
Parameters
- item
- Type: T
The object to locate in the collection.
Return Value
Type:
BooleanTrue if item is found in the collection; otherwise, false.
Implements
ICollectionTContains(T)See Also