show/hide this revision's text 2 Changed variable declaration to VB syntax
string 
Dim result As String = DateTime.ParseExact("24/5/2009 3:40:00 AM",
                                    "d/M/yyyy h:mm:ss tt",
                                     CultureInfo.InvariantCulture)
                               .ToString("M/d/yyyy h:mm:ss tt");
tt")

See also:

show/hide this revision's text 1
string result = DateTime.ParseExact("24/5/2009 3:40:00 AM",
                                    "d/M/yyyy h:mm:ss tt",
                                     CultureInfo.InvariantCulture)
                        .ToString("M/d/yyyy h:mm:ss tt");

See also: