C# 클래스 Vertesaur.Generation.Expressions.ReducibleBinaryExpressionBase

An expression that can be reduced to a compilable expression and which also takes two expressions as input.
상속: ReducibleExpressionBase
파일 보기 프로젝트 열기: aarondandy/vertesaur

보호된 메소드들

메소드 설명
ReducibleBinaryExpressionBase ( Expression leftParameter, Expression rightParameter, IExpressionGenerator reductionExpressionGenerator = null ) : System

Creates a new reducible expression with the given left and right parameters.

비공개 메소드들

메소드 설명
CodeContractInvariant ( ) : void

메소드 상세

ReducibleBinaryExpressionBase() 보호된 메소드

Creates a new reducible expression with the given left and right parameters.
protected ReducibleBinaryExpressionBase ( Expression leftParameter, Expression rightParameter, IExpressionGenerator reductionExpressionGenerator = null ) : System
leftParameter System.Linq.Expressions.Expression The first or left parameter.
rightParameter System.Linq.Expressions.Expression The second or right parameter.
reductionExpressionGenerator IExpressionGenerator The optional expression generator used for reduction.
리턴 System