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

◆ Sort() [6/8]

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

Definition at line 2366 of file Array.cs.

2367 {
2368 if (keys == null)
2369 {
2370 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.keys);
2371 }
2372 Sort(keys, items, keys.GetLowerBound(0), keys.Length, comparer);
2373 }
static void Sort(Array array)
Definition Array.cs:2329

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