I am keeping a list of objects in a List(). I want to sort this list by a property of the object.
For example, say the object is a Messsage and message has: content, date, header, ...
I want to sort the list by the message's date.
Is there any List method or any other method that makes this sort easy?
Thanks.