EnumerableChangedHandlerTItem, TCollectionInternalIndexOf Method |
Implements the mechanism for finding the index of an item (the slow way)
Namespace:
Eto
Assembly:
Eto (in Eto.dll) Version: 2.5.3-dev
Syntax protected override int InternalIndexOf(
TItem item
)
Protected Overrides Function InternalIndexOf (
item As TItem
) As Integer
abstract InternalIndexOf :
item : 'TItem -> int
override InternalIndexOf :
item : 'TItem -> int
Parameters
- item
- Type: TItem
Item to find in the collection
Return Value
Type:
Int32Index of the item, or -1 if not found
Remarks
If the collection object implements
IList, this will not get called
as it will call it's method of getting the index. This is used as a fallback.
See Also