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

◆ IfThenElse()

static ConditionalExpression System.Linq.Expressions.Expression< TDelegate >.IfThenElse ( Expression< TDelegate > test,
Expression< TDelegate > ifTrue,
Expression< TDelegate > ifFalse )
inlinestaticinherited

Definition at line 2363 of file Expression.cs.

2364 {
2365 return Condition(test, ifTrue, ifFalse, typeof(void));
2366 }
static ConditionalExpression Condition(Expression test, Expression ifTrue, Expression ifFalse)

References System.Linq.Expressions.Expression< TDelegate >.Condition().

Referenced by System.Linq.Expressions.Compiler.LambdaCompiler.TryEmitHashtableSwitch().