Alba.Jaml.MSInternal.GenericTypeNameParser.CollectNameListFromStack C# (CSharp) 메소드

CollectNameListFromStack() 개인적인 메소드

private CollectNameListFromStack ( ) : IList
리턴 IList
        private IList<XamlTypeName> CollectNameListFromStack ()
        {
            if (this._stack.Count != 1) {
                throw new TypeNameParserException(SR.Get("InvalidTypeString", new object[] { this._inputText }));
            }
            return this._stack.Peek().TypeArgs;
        }