Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
ParameterModifier.cs
Go to the documentation of this file.
1namespace System.Reflection;
2
3public readonly struct ParameterModifier
4{
5 private readonly bool[] _byRef;
6
7 public bool this[int index]
8 {
9 get
10 {
11 return _byRef[index];
12 }
13 set
14 {
16 }
17 }
18
19 internal bool[] IsByRefArray => _byRef;
20
21 public ParameterModifier(int parameterCount)
22 {
23 if (parameterCount <= 0)
24 {
26 }
27 _byRef = new bool[parameterCount];
28 }
29}
static string Arg_ParmArraySize
Definition SR.cs:366
Definition SR.cs:7