When displaying my DateTime values, I want them to be formatted like so: "February 9, 2009 7:00 AM"
I am using the following code, but am concerned that the date may display incorrectly in other cultures. Can anyone tell me if this is the case or not, and if it is how can I fix it?
Date.ToString("MMMM dd, yyyy hh:mm tt");
Thanks!