AjTalk.Language.Method.ExecuteNative C# (CSharp) Метод

ExecuteNative() публичный Метод

public ExecuteNative ( System.Machine machine, object self, object args ) : object
machine System.Machine
self object
args object
Результат object
        public object ExecuteNative(Machine machine, object self, object[] args)
        {
            return (new Interpreter(new ExecutionContext(machine, self, this, args))).Execute();
        }