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

◆ Sort() [5/8]

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

Definition at line 2338 of file Array.cs.

2339 {
2340 if (keys == null)
2341 {
2342 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.keys);
2343 }
2344 Sort(keys, items, keys.GetLowerBound(0), keys.Length, null);
2345 }
static void Sort(Array array)
Definition Array.cs:2329

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