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

◆ Sort() [2/8]

static void System.Array.Sort ( Array array,
IComparer? comparer )
inlinestatic

Definition at line 2357 of file Array.cs.

2358 {
2359 if (array == null)
2360 {
2361 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
2362 }
2363 Sort(array, null, array.GetLowerBound(0), array.Length, comparer);
2364 }
static void Sort(Array array)
Definition Array.cs:2329

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