Difference between CultureInfo.CreateSpecificCulture() and the constructor of the class?
The factory method has an fallback when it fails to create the culture info. So if you use a specific culture like ‘en-XX’, the culture info instance can’t be created, an exception will throw and a retry with the neutral culture ‘en’ will succeed. Below the source of the factory method public static CultureInfo CreateSpecificCulture(string … Read more