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

◆ IsBoxed

bool System.Linq.Expressions.Interpreter.LocalVariable.IsBoxed
getset

Definition at line 12 of file LocalVariable.cs.

13 {
14 get
15 {
16 return (_flags & 1) != 0;
17 }
18 set
19 {
20 if (value)
21 {
22 _flags |= 1;
23 }
24 else
25 {
26 _flags &= -2;
27 }
28 }
29 }

Referenced by System.Linq.Expressions.Interpreter.ParameterByRefUpdater.Update().