Is there a equivalent on .net of the string parsing of Datejs ( http://www.datejs.com/ ) ?
I wanna do things like
// Convert text into Date
Date.parse(‘today’);
Date.parse(‘t + 5 d’); // today + 5 days
Date.parse(‘next thursday’);
Date.parse(‘February 20th 1973′);
Date.parse(‘Thu, 1 July 2004 22:30:00′);
Tks!