On a 32 bit OS, with an Intel processor, DateTime e.g. 2/17/2009 12:00:00 AM Notice that it is: mm/DD//yyyy
On a 64 bit OS, with an AMD processor, DateTime e.g. 17-02-2009 00:00:00
Now when I try to parse the 1st format, it throws an error on the 2nd platform. That means - DateTime.Parse("2/17/2009 12:00:00 AM") - throws an error - cannot convert. whereas, on the same platform, DateTime.Parse("17/2/2009 12:00:00 AM") works! That means DD/MM is fine, MM/DD is not.
What is causing this? The 64-bit OS? The processor?
How do I get rid of the problem?