Given the following two cultures:
CultureInfo c1 = InvariantCulture;
CultureInfo c2 = new CultureInfo(\"en-US\");
and i were to examine eve
I know they have a different CultureName and LCID (see this list).
Additionally, the currency symbols are different - ¤ for InvariantCulture and $ for en-US.
From InvariantCulture:
It is used in almost any method in the Globalization namespace that requires a culture.
Suggesting that for the most part, they are interchangeable. However, the names do state intent, so you should think about that when using CultureInfo.