Beispiel #1
0
        private bool IsFirstMoreSecond(ModificationCollection first, ModificationCollection second)
        {
            if (first.Count == 0)
            {
                return(second.Count == 0);
            }

            if (second.Count == 0)
            {
                return(true);
            }

            Modification firstLast = first.Last();

            Modification secondLast = second.Last();

            return(firstLast.Secondary.StartIndex + firstLast.Secondary.Length >
                   secondLast.Secondary.StartIndex + secondLast.Secondary.Length);
        }
Beispiel #2
0
        private bool IsFirstMoreSecond(ModificationCollection first, ModificationCollection second)
        {
            if (first.Count == 0)
            {
                return second.Count == 0;
            }

            if (second.Count == 0)
            {
                return true;
            }

            Modification firstLast = first.Last();

            Modification secondLast = second.Last();

            return firstLast.Secondary.StartIndex + firstLast.Secondary.Length >
                   secondLast.Secondary.StartIndex + secondLast.Secondary.Length;
        }