ObservableCollectionTIndexOf Method
|
Searches for the specified object and returns the zero-based index of the first occurrence within the entire collection.
Namespace:
DXFReaderNET.Collections
Assembly:
DXFReaderNET (in DXFReaderNET.dll) Version: 20.10.54
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
METHOD IndexOf(
item AS T
) AS LONG
Parameters
- item
- Type: T
The object to locate in the collection.
Return Value
Type:
Int32The zero-based index of the first occurrence of item within the entire collection, if found; otherwise, –1.
Implements
IListTIndexOf(T)See Also