Docear4Word.BibTex.BibTexParser.ParseComment C# (CSharp) Method

ParseComment() private method

private ParseComment ( ) : void
return void
        void ParseComment()
        {
            while (Current.TokenType != TokenType.ClosingBrace)
            {
                Consume();
            }

            Consume(TokenType.ClosingBrace);
        }