The other day I had to sort a list by a datetime field. Given that this was an ASP.NET project, the easiest way that comes to mind to do that is to just sort the data on the server side, using LINQ, by writing a Comparer Class, or some other custom sort routine. Unfortunately for me those options were not available to me because: Collection I needed to sort was coming from an “black box” API, and one which I had no access to. Furthermore, even though they provided a Sort method on collections, it wasn’t working. LINQ was out of the question because the applic... [More]