Ejemplo n.º 1
0
        public void handlePiInt(Program program, PiInt PiNr)
        {
            switch (PiNr)
            {
            case PiInt.InvalidCommand:
            {
                program.setDone();
                break;
            }
            }

            return;
        }
Ejemplo n.º 2
0
        private void handlePiInt(PiInt intNr)
        {
            switch (intNr)
            {
            case PiInt.InvalidCommand:
                process.changeIC(7);
                break;

            default:
                throw new NotImplementedException();
            }

            return;
        }