NVelocity.Runtime.Parser.VelocityCharStream.BeginToken C# (CSharp) 메소드

BeginToken() 공개 메소드

public BeginToken ( ) : bool
리턴 bool
        public bool BeginToken()
        {
            tokenBegin = -1;
            bool success = ReadChar();
            if (success)
            {
                tokenBegin = bufferPosition;
            }

            return success;
        }