AjTalk.Language.NativeObjectBehavior.IfNotNil C# (CSharp) Метод

IfNotNil() приватный Метод

private IfNotNil ( System.Machine machine, object self, object arguments ) : object
machine System.Machine
self object
arguments object
Результат object
        private object IfNotNil(Machine machine, object self, object[] arguments)
        {
            Block block = (Block)arguments[0];
            return block.Execute(machine, null);
        }