Mono.Cecil.Cil.InstructionOffset.InstructionOffset C# (CSharp) Method

InstructionOffset() public method

public InstructionOffset ( Instruction instruction ) : System
instruction Instruction
return System
        public InstructionOffset(Instruction instruction)
        {
            if (instruction == null)
                throw new ArgumentNullException ("instruction");

            this.instruction = instruction;
            this.offset = null;
        }

Same methods

InstructionOffset::InstructionOffset ( int offset ) : System
InstructionOffset