Most of probably know that we can call against the CultureInfo's static GetCultures method to retrieve a collection of Cultures. Each culture will have it's own name - to take an example, "English/United States"...
My question is, is it possible to see how other cultures name that specific culture? The French will have a one name for it, the Germans another and so on and so forth...
What I'm therefore looking to do is something like this:
public string GetNameUsingCulture(CultureInfo selectedCulture, CultureInfo selectedLanguageCulture)
{
...
...
}