Logical() 공개 정적인 메소드

public static Logical ( System.Linq.Expressions left, System.Linq.Expressions right, bool isConjunction ) : Expression
left System.Linq.Expressions
right System.Linq.Expressions
isConjunction bool
리턴 System.Linq.Expressions.Expression
예제 #1
0
 internal override MSA.Expression /*!*/ TransformReadBoolean(AstGenerator /*!*/ gen, bool positive)
 {
     return(AstFactory.Logical(_left.TransformReadBoolean(gen, positive), _right.TransformReadBoolean(gen, positive), positive));
 }