Click or drag to resize

CollectionAlgorithms.BinarySearch Method

Overload List
  NameDescription
Public methodStatic memberBinarySearch<T>(IList<T>, T)
Public methodStatic memberBinarySearch<T>(IList<T>, T, IComparer<T>)
Public methodStatic memberBinarySearch<TListItem, TMatchItem>(IList<TListItem>, TMatchItem, CollectionAlgorithms.ComparisonOfDifferentTypes<TListItem, TMatchItem>)
Uses a binary search algorithm to locate a specific element in the sorted IList<T>. The element to search for can be a different type from the items in the collection.
Public methodStatic memberBinarySearch<T>(IList<T>, T, IComparer<T>, Int32, Int32)
Public methodStatic memberBinarySearch<TListItem, TMatchItem>(IList<TListItem>, TMatchItem, CollectionAlgorithms.ComparisonOfDifferentTypes<TListItem, TMatchItem>, Int32, Int32)
Uses a binary search algorithm to locate a specific element in the sorted IList<T>. The element to search for can be a different type from the items in the collection.
Top
See Also