I have application which use culture Where I do
var culture = new CultureInfo(code);
// code can be en-GB, en-US etc...
When I try with en-ZM I am getting below error
Culture is not supported. Parameter name: name en-ZM is an invalid culture identifier
This works fine in my development PC but not in some other remote machine(Windows server 2012R2)
When I check do
CultureInfo.GetCultures(CultureTypes.AllCultures)
the count I get is different in my pc and remote machine.
Is there a way I can add these missing culture?