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

◆ Reverse< T >() [1/2]

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

Definition at line 2286 of file Array.cs.

2287 {
2288 if (array == null)
2289 {
2290 ThrowHelper.ThrowArgumentNullException(ExceptionArgument.array);
2291 }
2292 Reverse(array, 0, array.Length);
2293 }
static void Reverse(Array array)
Definition Array.cs:2207

References System.array, System.Array.Reverse(), and System.ThrowHelper.ThrowArgumentNullException().