.NET: Are there any differences between InvariantCulture and en-US?
问题 Given the following two cultures: CultureInfo c1 = InvariantCulture; CultureInfo c2 = new CultureInfo("en-US"); and i were to examine every piece of information specific to both cultures, e.g.: c1.DateTimeInfo.ShortDatePattern; c2.DateTimeInfo.ShortDatePattern; c1.DateTimeInfo.LongDatePattern; c2.DateTimeInfo.LongDatePattern; c1.NumberFormat.CurrencyDecimalDigits; c2.NumberFormat.CurrencyDecimalDigits; c1.TextInfo.IsRightToLeft; c2.TextInfo.IsRightToLeft; Would i find any differences? In