Esempio n. 1
0
 private static Boolean IsMatchIncluding(Match m1, Match m2)
 {
     return !m1.Equals(m2) && m1.Groups[0].Index <= m2.Groups[0].Index &&
            m1.Groups[0].Length + m1.Groups[0].Index >= m2.Groups[0].Length + m2.Groups[0].Index;
 }