Absyn.IfExp.IfExp C# (CSharp) Method

IfExp() public method

public IfExp ( Exp e, Exp thene, Exp elsee ) : System
e Exp
thene Exp
elsee Exp
return System
	public IfExp(Exp e, Exp thene, Exp elsee)
	{
	    EvalExp = e;
	    ThenExp = thene;
	    ElseExp = elsee;
	}