Axiom.Runtime.AbstractProgram.CurrentInstruction C# (CSharp) Метод

CurrentInstruction() публичный абстрактный Метод

public abstract CurrentInstruction ( ) : AbstractInstruction
Результат AbstractInstruction
        public abstract AbstractInstruction CurrentInstruction();

Usage Example

        public void Transition()
        {
            while (!Stop())
            {
                AbstractInstruction next = _program.CurrentInstruction();
                AMHeap heap = (AMHeap)_dataArea;

                next.Execute(this);
            }
        }