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);
            }
        }