Mosa.Compiler.MosaTypeSystem.MosaInstruction.MosaInstruction C# (CSharp) Method

MosaInstruction() public method

public MosaInstruction ( int offset, ushort opCode, object operand, int prev, int next )
offset int
opCode ushort
operand object
prev int
next int
        public MosaInstruction(int offset, ushort opCode, object operand, int? prev, int? next)
        {
            Offset = offset;
            OpCode = opCode;
            Operand = operand;
            Previous = prev;
            Next = next;
        }
MosaInstruction