Culture info names
.net, c#, cultureinfo, currency, winforms
Solution
Is there any place where I can get all the names of culture info for work with .net?
You can use `CultureInfo.GetCultures` to find the list of the cultures supported on the machine you're actually running on. I wouldn't be surprised if it varied by OS, service pack, .NET version etc.
Problem
I am changing the application `culture` based on the selected currency. eg. ``` _culture = new CultureInfo("en-US"); _culture = new CultureInfo("fr-FR"); ``` Is there any place where I can get all the names of culture info for work with `.net`? I found most of them but misssing for few countries like Fiji Dollar(FJD), Swedish Kroner(SEK), Icelandic Kroner(ISK), Sri Lankan Rupee(LKR) and Brazilian Real(BRL) It will be great if somebody knows any reference I can look for these currencies. Thanks