I have a List that I need to sort by datatime, the class MyStuff looks like:
public class MyStuff
{
public int Type {get;set;}
public int Key {get;set;}
public DateTime Created {get;set;}
}
I need to be able to sort the collection List by the Created (datetime) field.