コード例 #1
0
        private string ParseName()
        {
            var start = _ptrIndex - 1;
            var len   = 0;

            while (LexUtils.IsNcNameChar(_currChar))
            {
                NextChar();
                len++;
            }
            return(_ptr.Substring(start, len));
        }