AjTalk.Language.Method.ExecuteNative C# (CSharp) Méthode

ExecuteNative() public méthode

public ExecuteNative ( System.Machine machine, object self, object args ) : object
machine System.Machine
self object
args object
Résultat object
        public object ExecuteNative(Machine machine, object self, object[] args)
        {
            return (new Interpreter(new ExecutionContext(machine, self, this, args))).Execute();
        }