FinMath.BinarySearch (Int32, Int32(), Int32) Method
Binary search in an array of n integer values to locate value.
public static int BinarySearch(
int n,
int[] SearchArray,
int SearchValue
)
This language is not supported or no code example is available.
public:
static int BinarySearch(
int n,
array< int >^ SearchArray,
int SearchValue
)
This language is not supported or no code example is available.
public static function BinarySearch(
n : int,
SearchArray : int[],
SearchValue : int
) : int;
This language is not supported or no code example is available.
Parameters
-
n
-
int
-
SearchArray
-
int[]
-
SearchValue
-
int
Return Value
int
In this article
Definition