CollectionBase
T
Contains Method
|
Determines whether the collection contains a specific item.
Namespace:
Spire.Xls.Core.Spreadsheet.Collections
Assembly:
Spire.XLS (in Spire.XLS.dll) Version: 15.4.0.0 (15.4.0.5046)
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
Parameters
-
item
-
Type:
T
The item to locate in the collection.
Return Value
Type:
Boolean
true if the item is found in the collection; otherwise, false.
Implements
ICollection
T
Contains(T)
See Also