 | EventedListTLastIndexOf Method (T) |
Searches for the specified object and returns the zero-based index of the last occurrence within the entire
EventedListT.
Namespace:
System.Collections.Generic
Assembly:
AeroWizard (in AeroWizard.dll) Version: 2.2.3
Syntaxpublic int LastIndexOf(
T item
)
Public Function LastIndexOf (
item As T
) As Integer
public:
int LastIndexOf(
T item
)
Request Example
View SourceParameters
- item
- Type: T
The object to locate in the EventedListT. The value can be null for reference types.
Return Value
Type:
Int32The index of
item if found in the list; otherwise, -1.
See Also