Mono.CSharp.BoolConstant.BoolConstant C# (CSharp) Method

BoolConstant() public method

public BoolConstant ( System.TypeSpec type, bool val, Mono.CSharp.Location loc ) : System
type System.TypeSpec
val bool
loc Mono.CSharp.Location
return System
		public BoolConstant (TypeSpec type, bool val, Location loc)
			: base (loc)
		{
			eclass = ExprClass.Value;
			this.type = type;

			Value = val;
		}

Same methods

BoolConstant::BoolConstant ( BuiltinTypes types, bool val, Mono.CSharp.Location loc ) : System