Determines whether an element is in the BigList.
Namespace: BioAssembly: Bio.Core (in Bio.Core.dll) Version: 2.0.0.1 (2.0.0.1)
Syntax public bool Contains(
T item
)
Public Function Contains (
item As T
) As Boolean
public:
bool Contains(
T item
)
member Contains :
item : 'T -> bool
Parameters
- item
- Type: T
The object to locate in the BigList.
Return Value
Type:
Booleantrue if item is found in the BigList, else false.
See Also