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

◆ Sort< T >() [3/5]

static void System.Array.Sort< T > ( T[] array,
IComparer< T >? comparer )
inlinestatic

Definition at line 2516 of file Array.cs.

2517 {
2518 if (array == null)
2519 {
2520 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
2521 }
2522 Sort(array, 0, array.Length, comparer);
2523 }
static void Sort(Array array)
Definition Array.cs:2329

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