Exemplo n.º 1
0
 public static void BubbleSortWithCompareRules(this IList self, IList <Comparison <object> > compareRules)
 {
     SortUtil.BubbleSortWithCompareRules(self, compareRules);
 }
Exemplo n.º 2
0
 public static void BubbleSortWithCompareRules <T>(this IList <T> self, IList <Comparison <T> > compareRules)
 {
     SortUtil.BubbleSortWithCompareRules(self, compareRules);
 }