public void SortByCost()
 {
     MergeSort.Sort(droidCollection, lengthOfCollection);
 }
Пример #2
0
        //This method calls the merge sort on the droid collection.

        public void DroidMergeSort()
        {
            MergeSort.Sort(droidCollection, SizeCheck());
        }