You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
1.0 KiB
31 lines
1.0 KiB
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.Controller.Sorting
|
|
{
|
|
public static class SortExtensions
|
|
{
|
|
private static readonly AlphanumComparator _comparer = new AlphanumComparator();
|
|
public static IEnumerable<T> OrderByString<T>(this IEnumerable<T> list, Func<T, string> getName)
|
|
{
|
|
return list.OrderBy(getName, _comparer);
|
|
}
|
|
|
|
public static IEnumerable<T> OrderByStringDescending<T>(this IEnumerable<T> list, Func<T, string> getName)
|
|
{
|
|
return list.OrderByDescending(getName, _comparer);
|
|
}
|
|
|
|
public static IOrderedEnumerable<T> ThenByString<T>(this IOrderedEnumerable<T> list, Func<T, string> getName)
|
|
{
|
|
return list.ThenBy(getName, _comparer);
|
|
}
|
|
|
|
public static IOrderedEnumerable<T> ThenByStringDescending<T>(this IOrderedEnumerable<T> list, Func<T, string> getName)
|
|
{
|
|
return list.ThenByDescending(getName, _comparer);
|
|
}
|
|
}
|
|
}
|