Enum BinarySearchResult
Represents the result of a binary search operation.
public enum BinarySearchResult
- Extension Methods
Fields
CriticalFound = 2
Indicates that an exact match was found.
FoundCeil = 8
Indicates that a value greater than or equal to the target was found.
FoundFloor = 4
Indicates that a value less than or equal to the target was found.
NotExisted = 1
Indicates that the target value does not exist in the collection.