Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ BinarySearch() [4/4]

static int System.Array.BinarySearch ( Array array,
object? value,
IComparer? comparer )
inlinestatic

Definition at line 1334 of file Array.cs.

1335 {
1336 if (array == null)
1337 {
1338 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
1339 }
1340 return BinarySearch(array, array.GetLowerBound(0), array.Length, value, comparer);
1341 }
static int BinarySearch(Array array, object? value)
Definition Array.cs:1320

References System.array, System.Array.BinarySearch(), System.comparer, System.ThrowHelper.ThrowArgumentNullException(), and System.value.