Example : "02/03/2014" mm/dd/yyyy (US) and "03/02/2014" dd/mm/yyyy (French).
They are the same date but different region of the world.
I know I need to convert them to date objects then compare them.
Is there a way to dynamically pull and set culture info from the system, so that the the date format will be specific to the region with out hard coding the culture info?
Hard coding -Thread.CurrentThread.CurrentCulture = new CultureInfo("fr-FR");