Axiom.Runtime.Instructions.ProcedureInstruction.Process C# (CSharp) 메소드

Process() 공개 메소드

public Process ( object arguments ) : void
arguments object
리턴 void
        public override void Process(object[] arguments)
        {
            _procedureName = (string)arguments[0];
            _arity = Int32.Parse((string)arguments[1]);
        }