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

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

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

Definition at line 2590 of file Array.cs.

2591 {
2592 if (array == null)
2593 {
2594 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
2595 }
2596 if (comparison == null)
2597 {
2598 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.comparison);
2599 }
2602 }
static unsafe ref byte GetArrayDataReference(Array array)

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