protected override void VisitLoadConstI4Instruction(LoadConstI4Instruction instruction)
        {
            var stackVal = new CilStackValueInt32(instruction.Value);

            ControlState.EvaluationStack.Push(stackVal);

            ControlState.MoveToNextInstruction();
        }
Пример #2
0
 protected abstract void VisitLoadConstI4Instruction(LoadConstI4Instruction instruction);