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

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

static void System.Array.Sort< T > ( T[] array)
inlinestatic

Definition at line 2484 of file Array.cs.

2485 {
2486 if (array == null)
2487 {
2488 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
2489 }
2490 if (array.Length > 1)
2491 {
2493 ArraySortHelper<T>.Default.Sort(keys, null);
2494 }
2495 }
static unsafe ref byte GetArrayDataReference(Array array)

References System.array, System.Runtime.InteropServices.MemoryMarshal.GetArrayDataReference(), System.keys, and System.ThrowHelper.ThrowArgumentNullException().