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

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

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

Definition at line 2497 of file Array.cs.

2498 {
2499 if (keys == null)
2500 {
2501 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.keys);
2502 }
2503 Sort(keys, items, 0, keys.Length, null);
2504 }
static void Sort(Array array)
Definition Array.cs:2329

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