list
How to sort items in a list in C#
Submitted by softking on Mon, 06/16/2008 - 18:34Sorting lists in C# with support of the interface IComparable
for example we have objects from the class TestItem in a list
public class TestItem
{
private int sortByMe;
}
