AsmResolver.Net.Msil.MsilInstruction.MsilInstruction C# (CSharp) Method

MsilInstruction() public method

public MsilInstruction ( int offset, MsilOpCode opCode, object operand ) : System
offset int
opCode MsilOpCode
operand object
return System
        public MsilInstruction(int offset, MsilOpCode opCode, object operand)
        {
            Offset = offset;
            OpCode = opCode;
            Operand = operand;
        }