| MatTElemContains Method |
Determines whether the ICollection<T> contains a specific value.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public bool Contains(
TElem item
)
Public Function Contains (
item As TElem
) As Boolean
public:
virtual bool Contains(
TElem item
) sealed
abstract Contains :
item : 'TElem -> bool
override Contains :
item : 'TElem -> bool
Parameters
- item
- Type: TElem
The object to locate in the ICollection<T>.
Return Value
Type:
Boolean true if item is found in the ICollection<T> otherwise, false.
Implements
ICollectionTContains(T)See Also