Is there an equivalent of PHP\'s strtotime() function working on .NET Framework. I\'m talking about it\'s capacity to handle strings likes:
strtotime()
DateTime date = new DateTime(10,10,2010) Response.Write(date.ToShortDateTimeString()); Response.Write(date.Year); date = DateTime.Now;
etc etc