/// <summary>
        ///
        /// </summary>
        /// <param name="other"></param>
        /// <returns></returns>
        public bool Equals(StringSequence other)
        {
            if (m_preCode != other.m_preCode)
            {
                return(false);
            }
            if (m_begin != other.m_begin)
            {
                return(false);
            }

            return(m_end == other.m_end);
        }
        /// <summary>
        /// 
        /// </summary>
        /// <param name="other"></param>
        /// <returns></returns>
        public bool Equals(StringSequence other)
        {
            if (m_preCode != other.m_preCode)
                return false;
            if (m_begin != other.m_begin)
                return false;

            return m_end == other.m_end;
        }