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