コード例 #1
0
 public static void BubbleSortWithCompareRules(this IList self, IList <Comparison <object> > compareRules)
 {
     SortUtil.BubbleSortWithCompareRules(self, compareRules);
 }
コード例 #2
0
ファイル: IListTExtension.cs プロジェクト: uiopsczc/Test
 public static void BubbleSortWithCompareRules <T>(this IList <T> self, IList <Comparison <T> > compareRules)
 {
     SortUtil.BubbleSortWithCompareRules(self, compareRules);
 }