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

◆ this[int index]

object IList. System.Array.this[int index]
getsetprivate

Implements System.Collections.Generic.IList< T >.

Definition at line 56 of file Array.cs.

57 {
58 get
59 {
60 return this.GetValue(index);
61 }
62 set
63 {
64 this.SetValue(value, index);
65 }
66 }
void SetValue(object value, long index)
Definition Array.cs:513
object GetValue(long index)
Definition Array.cs:250