Assuming your original date starts as a string and you want it to end up as another string, you could do something like this in C#:
string from = "24/5/2009 3:40:00 AM";
DateTime dt = DateTime.ParseExact(from, "d/M/yyyy h:mm:ff h:mm:ss tt", , System.Globalization.CultureInfo.InvariantCulture);
string to = dt.ToString("MM/dd/yyyy hh:mm:ff hh:mm:ss tt", System.Globalization.CultureInfo.InvariantCulture);
*Edit: Fixed the formatting strings. It assumes your original strings only have single digit day, month, and hour values when they are each less than 10. It also assumes you want them all to be 2 digit values for the result.
Here's the MSDN Documentation on the subject: Custom Date and Time Format Strings
