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