Axiom.Runtime.AbstractProgram.CurrentInstruction C# (CSharp) Method

CurrentInstruction() public abstract method

public abstract CurrentInstruction ( ) : AbstractInstruction
return AbstractInstruction
        public abstract AbstractInstruction CurrentInstruction();

Usage Example

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

                next.Execute(this);
            }
        }