I have country list with two letter code like 'US' and and three letter code like 'USA'. I just want to assign all 239 countries have the locale code like en-US (not es-US).
I tried the iterate on:
CultureInfo[] cultures = CultureInfo.GetCultures(CultureTypes.SpecificCultures);
then:
var country = countries.Where(c => c.CodeIso3 == region.ThreeLetterISORegionName).FirstOrDefault();
it doesnt work, to much override.
how to assign the 239 countries code to with is major(or default) language?
Thanks