I need to sort a collection. For example, I have
Austin 12/3/2012 Sam 100 12/3/2012 Sam 200 14/3/2012 Bubly 300 12/3/2012 Bubly 300 15/3/2012
Something like this:
yourList.OrderBy(o => o.DateTime).ThenBy(o => o.Number);