public static bool HasQuotes(StringView sv)
        {
            if (sv.length < 2)
            {
                return(false);
            }
            var c = sv[0];

            if (!IsQuote(c))
            {
                return(false);
            }
            return(c == sv.Last());
        }