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);
        }