Logo

Programming-Idioms

History of Idiom 100 > diff from v48 to v49

Edit summary for version 49 by aolszowka:
New Csharp implementation by user [aolszowka]

Version 48

2019-09-26, 14:55:18

Version 49

2019-09-26, 15:28:43

Idiom #100 Sort by a comparator

Sort elements of array-like collection items, using a comparator c.

Idiom #100 Sort by a comparator

Sort elements of array-like collection items, using a comparator c.

Extra Keywords
list
Extra Keywords
list
Imports
using System;
using System.Linq;
Code
var orderdEnumerable = x.OrderBy(y => y, c);
Doc URL
https://docs.microsoft.com/en-us/dotnet/api/system.linq.enumerable.orderby?view=netframework-4.8