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

◆ IsLifted

bool System.Linq.Expressions.BinaryExpression.IsLifted
getinherited

Definition at line 23 of file BinaryExpression.cs.

24 {
25 get
26 {
27 if (NodeType == ExpressionType.Coalesce || NodeType == ExpressionType.Assign)
28 {
29 return false;
30 }
31 if (Left.Type.IsNullableType())
32 {
34 if (!(method == null))
35 {
36 return !TypeUtils.AreEquivalent(method.GetParametersCached()[0].ParameterType.GetNonRefType(), Left.Type);
37 }
38 return true;
39 }
40 return false;
41 }
42 }
static bool AreEquivalent(Type t1, Type t2)
Definition TypeUtils.cs:664
virtual ExpressionType NodeType