public int BinarySearch(
int index,
int count,
T item,
IComparer<T>? comparer
)
Public Function BinarySearch (
index As Integer,
count As Integer,
item As T,
comparer As IComparer(Of T)
) As Integer
public:
int BinarySearch(
int index,
int count,
T item,
IComparer<T>^ comparer
)
member BinarySearch :
index : int *
count : int *
item : 'T *
comparer : IComparer<'T> -> int
The comparer customizes how the elements are compared. For example, you can use a CaseInsensitiveComparer instance as the comparer to perform case-insensitive string searches.
If comparer is provided, the elements of the list are compared to the specified value using the specified IComparerT implementation.
If comparer is , then if T is an enum, this method uses the EnumComparer<TEnum>.Comparer; otherwise, the default comparer Comparer<T>.Default for type T to determine the order of list elements. The Comparer<T>.Default property checks whether type T implements the IComparableT generic interface and uses that implementation, if available. If not, Comparer<T>.Default checks whether type T implements the IComparable interface. If type T does not implement either interface, Comparer<T>.Default throws an InvalidOperationException.
The list must already be sorted according to the comparer implementation; otherwise, the result is incorrect.
If comparer is , comparing with any reference type is allowed and does not generate an exception when using the IComparableT generic interface. When sorting, is considered to be less than any other object.
If the list contains more than one element with the same value, the method returns only one of the occurrences, and it might return any one of the occurrences, not necessarily the first one.
If the list does not contain the specified value, the method returns a negative integer. You can apply the bitwise complement operation (~) to this negative integer to get the index of the first element that is larger than the search value. When inserting the value into the CircularListT, this index should be used as the insertion point to maintain the sort order.
This method is an O(log n) operation, where n is the number of elements in the range.
ArgumentOutOfRangeException | index is less than 0.
-or- count is less than 0. |
ArgumentException | index and count do not denote a valid range in the list. |
InvalidOperationException | comparer is , and the default comparer Default cannot find an implementation of the IComparableT generic interface or the IComparable interface for type T. |