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

◆ ArraySetValue

MethodInfo System.Runtime.Serialization.CodeGenerator.ArraySetValue
staticgetprivate

Definition at line 75 of file CodeGenerator.cs.

76 {
77 get
78 {
79 if (s_arraySetValue == null)
80 {
81 s_arraySetValue = typeof(Array).GetMethod("SetValue", new Type[2]
82 {
83 typeof(object),
84 typeof(int)
85 });
86 }
87 return s_arraySetValue;
88 }
89 }

Referenced by System.Runtime.Serialization.CodeGenerator.StoreArrayElement().