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

◆ Sort< TKey, TValue >() [2/4]

static void System.Array.Sort< TKey, TValue > ( TKey[] keys,
TValue?[] items,
IComparer< TKey >? comparer )
inlinestatic

Definition at line 2525 of file Array.cs.

2526 {
2527 if (keys == null)
2528 {
2529 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.keys);
2530 }
2531 Sort(keys, items, 0, keys.Length, comparer);
2532 }
static void Sort(Array array)
Definition Array.cs:2329

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