Example #1
0
 public void Sort(Comparison <T> comp)
 {
     // Make the array contiguous so that we can use a fast array sort
     RearrangeToContiguous();
     InternalList.Sort(_array, _start, _count, comp);
 }