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

◆ Type

override Type System.Linq.Expressions.ConstantExpression.Type
get

Definition at line 8 of file ConstantExpression.cs.

9 {
10 get
11 {
12 if (Value == null)
13 {
14 return typeof(object);
15 }
16 return Value.GetType();
17 }
18 }