Skip to content

Instantly share code, notes, and snippets.

@jarek-przygodzki
Created September 18, 2014 19:28
Show Gist options
  • Save jarek-przygodzki/3e793367d1314219c9de to your computer and use it in GitHub Desktop.
Save jarek-przygodzki/3e793367d1314219c9de to your computer and use it in GitHub Desktop.
SortExtensions.cs
public static void Sort<T,U>(this List<T> list, Func<T, U> expr)
where U : IComparable<U>
{
list.Sort((x, y) => expr(x).CompareTo(expr(y)));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment