| DequeTIndexOf Method |
Determines the index of a specific item in the
DequeT.
Namespace: DigitalRune.CollectionsAssembly: DigitalRune (in DigitalRune.dll) Version: 1.20.0.0 (1.20.1.14552)
Syntax public int IndexOf(
T item
)
Public Function IndexOf (
item As T
) As Integer
public:
virtual int IndexOf(
T item
) sealed
abstract IndexOf :
item : 'T -> int
override IndexOf :
item : 'T -> int
Parameters
- item
- Type: T
The object to locate in the DequeT.
Return Value
Type:
Int32
The index of
item if found in the deque; otherwise, -1.
Implements
IListTIndexOf(T)See Also