Alba.Jaml.MSInternal.GenericTypeNameParser.CollectNameListFromStack C# (CSharp) Method

CollectNameListFromStack() private method

private CollectNameListFromStack ( ) : IList
return 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;
        }