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

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

static void System.MemoryExtensions.Sort< T > ( this Span< T > span,
Comparison< T > comparison )
inlinestatic

Definition at line 1291 of file MemoryExtensions.cs.

1292 {
1293 if (comparison == null)
1294 {
1295 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.comparison);
1296 }
1297 if (span.Length > 1)
1298 {
1300 }
1301 }

References System.comparison, and System.ThrowHelper.ThrowArgumentNullException().