Click or drag to resize
AlgorithmsBinarySearch Method
Overload List
  NameDescription
Public methodStatic memberBinarySearchT(IListT, T, Int32)
Searches a sorted list for an item via binary search. The list must be sorted by the natural ordering of the type (it's implementation of IComparable<T>).
Public methodStatic memberBinarySearchT(IListT, T, IComparerT, Int32)
Searches a sorted list for an item via binary search. The list must be sorted by the ordering in the passed instance of IComparer<T>.
Public methodStatic memberBinarySearchT(IListT, T, ComparisonT, Int32)
Searches a sorted list for an item via binary search. The list must be sorted by the ordering in the passed Comparison<T> delegate.
Top
See Also