LookForFactory() 개인적인 메소드

private LookForFactory ( string key ) : object
key string
리턴 object
예제 #1
0
        private object LookForFactory(string key)
        {
            object o = factories [key];

            if (o != null)
            {
                return(o);
            }

            if (parent != null)
            {
                return(parent.LookForFactory(key));
            }

            return(null);
        }