I'm using a List and sort items.
objListOrder.Sort(
delegate(Order p1, Order p2)
{
return p1.Title.CompareTo(p2.Title);
}
I'm having an issue where I need to disable sort and order the items in the order they were added in the list, not in the alphabetical order of corresponding keys.
Is there a way to clear sorting after sort?