Pytocs.Syntax.Lexer.AccumString C# (CSharp) Method

AccumString() private method

private AccumString ( int c, State st ) : void
c int
st State
return void
        private void AccumString(int c, State st)
        {
            if (c < 0)
                throw new FormatException("Unexpected end of string constant.");
            Advance();
            this.sb.Append((char) c);
            this.st = st;
        }