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

◆ RuntimeType

Type? System.Dynamic.DynamicMetaObject.RuntimeType
getinherited

Definition at line 33 of file DynamicMetaObject.cs.

34 {
35 get
36 {
37 if (HasValue)
38 {
40 if (type.IsValueType)
41 {
42 return type;
43 }
44 return Value?.GetType();
45 }
46 return null;
47 }
48 }