Logo

Programming-Idioms

History of Idiom 100 > diff from v50 to v51

Edit summary for version 51 by bigfrancoag:
New Csharp implementation by user [bigfrancoag]

Version 50

2019-09-26, 17:24:41

Version 51

2019-09-26, 17:27:00

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.Collections.Generic;
Code
items.Sort(c);
Comments bubble
items is a List<Item>
c is an implementation of IComparer<Item>
Doc URL
https://support.microsoft.com/en-us/help/320727/how-to-use-the-icomparable-and-icomparer-interfaces-in-visual-c