Esempio n. 1
0
 public Sorting(int[] ar, ISortingType sortingType)
 {
     _sortingType = sortingType;
     _ar = (int[])ar.Clone(); ;
 }
Esempio n. 2
0
 public void SetSortingType(int[] ar, ISortingType sortingType)
 {
     _sortingType = sortingType;
     _ar = (int[])ar.Clone(); ;
 }