AjScript.Interpreter.Lexer.SkipToEndOfComment C# (CSharp) Метод

SkipToEndOfComment() приватный Метод

private SkipToEndOfComment ( ) : void
Результат void
        private void SkipToEndOfComment()
        {
            char? nch;

            nch = this.NextChar();

            while (nch.HasValue)
            {
                while (nch.Value != '*')
                    nch = this.NextChar();

                char? nch2 = this.NextChar();

                if (nch2.HasValue && nch2 == '/')
                    return;

                nch = nch2;
            }
        }