CollectionView.IndexOf Method
Returns the index at which the specified item is located.
Assembly: PresentationFramework (in PresentationFramework.dll)
Parameters
- item
- Type: System.Object
The item to locate.
Return Value
Type: System.Int32The index at which the specified item is located, or –1 if the item is unknown.
If this method returns an index other than -1, it must always be true that view[index-1] < item <= view[index], where the comparisons are done using the IComparer.Compare method of the view, if one exists.
This particular behavior of the method is used by some CollectionChanged event handlers to speed up reaction to insertion and deletion. If the derived class does not override this method, a listener does a binary search using the IComparer.Compare method.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.