Pytocs.Syntax.Lexer.AccumString C# (CSharp) 메소드

AccumString() 개인적인 메소드

private AccumString ( int c, State st ) : void
c int
st State
리턴 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;
        }