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

DoubleConstant() public method

public DoubleConstant ( System.TypeSpec type, double v, Mono.CSharp.Location loc ) : System
type System.TypeSpec
v double
loc Mono.CSharp.Location
return System
		public DoubleConstant (TypeSpec type, double v, Location loc)
			: base (loc)
		{
			this.type = type;
			eclass = ExprClass.Value;

			Value = v;
		}

Same methods

DoubleConstant::DoubleConstant ( BuiltinTypes types, double v, Mono.CSharp.Location loc ) : System