Namespace: Dapfor.Wpf.DataAssembly: Dapfor.Wpf (in Dapfor.Wpf.dll) Version: 4.1.0.26317 (4.1.0.26317)
Syntax
| C# |
|---|
public int IndexOf(
T item
) |
| Visual Basic |
|---|
Public Function IndexOf (
item As T
) As Integer |
| Visual C++ |
|---|
public:
virtual int IndexOf(
T item
) sealed |
| F# |
|---|
abstract IndexOf :
item : 'T -> int
override IndexOf :
item : 'T -> int |
Parameters
- item
- Type: T
The object to locate in the IList<(Of <(<'T>)>)>.
Return Value
Type:
Int32
The index of
item if found in the list; otherwise, -1.
Implements
IList<(Of <(<'T>)>)>..::..IndexOf(T)
See Also