Org.Mozilla.Classfile.ClassFileWriter.AddLoadConstant C# (CSharp) Method

AddLoadConstant() public method

Generate the load constant bytecode for the given double.
Generate the load constant bytecode for the given double.
public AddLoadConstant ( double k ) : void
k double the constant
return void
		public virtual void AddLoadConstant(double k)
		{
			Add(ByteCode.LDC2_W, itsConstantPool.AddConstant(k));
		}

Same methods

ClassFileWriter::AddLoadConstant ( float k ) : void
ClassFileWriter::AddLoadConstant ( int k ) : void
ClassFileWriter::AddLoadConstant ( long k ) : void
ClassFileWriter::AddLoadConstant ( string k ) : void