Пример #1
0
 private void LinkResultsWithUniqueIdenticalWhat()
 {
     foreach (Tuple <int, int> link in _beforeWhatMap.UniqueLinks(_afterWhatMap))
     {
         LinkIfSimilar(link.Item1, link.Item2);
     }
 }
Пример #2
0
        private void LinkResultsWithUniqueIdenticalWhat()
        {
            WhatMap beforeMap = new WhatMap(Before, MatchingIndexFromBefore);
            WhatMap afterMap  = new WhatMap(After, MatchingIndexFromAfter);

            foreach (Tuple <int, int> link in beforeMap.UniqueLinks(afterMap))
            {
                LinkIfSimilar(link.Item1, link.Item2);
            }
        }