public ILOpCodeConst(double value) : this(ConstType.Double) { _value = new ImmVal { R8 = value }; }
public ILOpCodeConst(long value) : this(ConstType.Int64) { _value = new ImmVal { I8 = value }; }
public ILOpCodeConst(float value) : this(ConstType.Single) { _value = new ImmVal { R4 = value }; }
public ILOpCodeConst(int value) : this(ConstType.Int32) { _value = new ImmVal { I4 = value }; }
public AILOpCodeConst(double Value) : this(ConstType.Double) { this.Value = new ImmVal { R8 = Value }; }
public AILOpCodeConst(float Value) : this(ConstType.Single) { this.Value = new ImmVal { R4 = Value }; }
public AILOpCodeConst(long Value) : this(ConstType.Int64) { this.Value = new ImmVal { I8 = Value }; }
public AILOpCodeConst(int Value) : this(ConstType.Int32) { this.Value = new ImmVal { I4 = Value }; }