Created
May 23, 2013 06:53
C# array custom sort
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class ComparerGeneric : IComparer<Customer> | |
{ | |
#region IComparer<Customer> Members | |
public int Compare(Customer x, Customer y) | |
{ | |
return x.Name.CompareTo(y.Name); | |
} | |
#endregion | |
} | |
//USE | |
Array.Sort(array_to_sort, new ComparerGeneric()); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment