Use OrderBy operator with customized Comparer in CSharp
Description
The following code shows how to use OrderBy operator with customized Comparer.
Example
/* w w w. jav a 2 s . c o m*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
public class CaseInsensitiveComparer : IComparer<string> {
public int Compare(string x, string y) {
return string.Compare(x, y, true);
}
}
public class MainClass {
public static void Main() {
string[] words = { "a", "A", "b", "B", "C", "c" };
var sortedWords = words.OrderBy(a => a, new CaseInsensitiveComparer());
}
}