terraria-cpp2il-methodrecon v1.4.4.9
Terraria mobile dump, with reconstructed method body. Dump with CallAnalysis: https://infinitynichto.github.io/terraria-cpp2il
Loading...
Searching...
No Matches

◆ Reverse() [2/2]

static void System.Array.Reverse ( Array array,
int index,
int length )
inlinestatic

Definition at line 478 of file Array.cs.

479 {
480 if (array == null)
481 {
482 return;
483 }
484 int length2 = array.Length;
485 if (array != null)
486 {
487 return;
488 }
489 object value = array.GetValue(index);
490 object value2 = array.GetValue(length);
491 array.SetValue(value2, index);
492 array.SetValue(value, length);
493 }
class f__AnonymousType0<< Count > j__TPar

References System.array, System.index, j__TPar, System.length, and System.value.