The Sorting type exposes the following members.
Methods|   | Name | Description | 
|---|
   | SortT(IListT, IComparerT) | 
            Sort a list of keys, in place using the quick sort algorithm.
             | 
   | SortT(IListT, Int32, Int32, IComparerT) | 
            Sort a range of a list of keys, in place using the quick sort algorithm.
             | 
   | SortTKey, TItem(IListTKey, IListTItem, IComparerTKey) | 
            Sort a list of keys and items with respect to the keys, in place using the quick sort algorithm.
             | 
   | SortTKey, TItem(IListTKey, IListTItem, Int32, Int32, IComparerTKey) | 
            Sort a list of keys and items with respect to the keys, in place using the quick sort algorithm.
             | 
   | SortTKey, TItem1, TItem2(IListTKey, IListTItem1, IListTItem2, IComparerTKey) | 
            Sort a list of keys, items1 and items2 with respect to the keys, in place using the quick sort algorithm.
             | 
   | SortTKey, TItem1, TItem2(IListTKey, IListTItem1, IListTItem2, Int32, Int32, IComparerTKey) | 
            Sort a list of keys, items1 and items2 with respect to the keys, in place using the quick sort algorithm.
             | 
   | SortAllT1, T2 | 
            Sort a list of keys and items with respect to the keys, in place using the quick sort algorithm.
             | 
Top
See Also