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

◆ IsFalse() [2/2]

static UnaryExpression System.Linq.Expressions.Expression< TDelegate >.IsFalse ( Expression< TDelegate > expression,
MethodInfo? method )
inlinestaticinherited

Definition at line 5200 of file Expression.cs.

5201 {
5203 if (method == null)
5204 {
5205 if (expression.Type.IsBool())
5206 {
5207 return new UnaryExpression(ExpressionType.IsFalse, expression, expression.Type, null);
5208 }
5210 }
5212 }
static void RequiresCanRead(Expression expression, string paramName)
static UnaryExpression GetUserDefinedUnaryOperatorOrThrow(ExpressionType unaryType, string name, Expression operand)
static UnaryExpression GetMethodBasedUnaryOperator(ExpressionType unaryType, Expression operand, MethodInfo method)

References System.Linq.Expressions.Expression< TDelegate >.GetMethodBasedUnaryOperator(), System.Linq.Expressions.Expression< TDelegate >.GetUserDefinedUnaryOperatorOrThrow(), and System.Dynamic.Utils.ExpressionUtils.RequiresCanRead().