Click or drag to resize
Wizard .NET Library

EventedListTBinarySearch Method (T, IComparerT)

Searches the entire sorted EventedListT for an element using the specified comparer and returns the zero-based index of the element.

Namespace:  System.Collections.Generic
Assembly:  AeroWizard (in AeroWizard.dll) Version: 2.2.3
Syntax
public int BinarySearch(
	T item,
	IComparer<T> comparer
)
Request Example View Source

Parameters

item
Type: T
The object to locate. The value can be null for reference types.
comparer
Type: System.Collections.GenericIComparerT
The IComparerT implementation to use when comparing elements, or null to use the default comparer Default.

Return Value

Type: Int32
The zero-based index of item in the sorted EventedListT, if item is found; otherwise, a negative number that is the bitwise complement of the index of the next element that is larger than item or, if there is no larger element, the bitwise complement of Count.
See Also