Tagged Questions
The regioninfo tag has no wiki summary.
10
votes
4answers
2k views
Best Practice - Format Multiple Currencies
What is best practice for the scenario listed below?
We have an application which we would like to support multiple currencies. The software will respect the users locale and regional settings to ...
5
votes
1answer
905 views
.NET RegionInfo class
When I try to create a new RegionInfo with certain ISO 3166 country codes ("BD" for Bangladesh, "SO" for Somalia, "LK" for Sri Lanka), I get an ArgumentException that says it's not recognized.
What's ...
4
votes
5answers
369 views
Get a country's continent in C#
Is there a way to find a country's continent in C#, using the RegionInfo class or any other way?
For example, you give the country name "Denmark" and it returns "Europe".
4
votes
7answers
534 views
How to get DayNames from language only in .NET
Assume that I only have a country code (en, de, fr) and I need to display the weekdays in this language.
I know about RegionInfo and CultureInfo - but I can't find a solution.
If I create a country ...
1
vote
1answer
103 views
Why does RegionInfo.TwoLetterISORegionName return 3 chars for Caribbean?
Trying to generate currency type seed data for an application and iterating through the CultureInfo collection of System.Globalization. I kept getting truncation errors on my insert statements until I ...
0
votes
1answer
37 views
RegionInfo and GeoId
I was thinking of using RegionInfo.TwoLetterISORegionName to as a database attribute from which to get information about a country. Until I saw RegionInfoGeoId, which seems more robust.
Which would ...
0
votes
2answers
217 views
How does one set text of two labels with two different cultural/region format options?
How does one set text of two labels with two different cultural/region format options?
For first label to be ar-EG : Arabic - Egypt
and second one to be en-US : English - United States ?
This to be ...
0
votes
2answers
248 views
How to find world region (or country) or language from the windows registry?
I'm working with a very old installer that can read Registry entries but has a difficulty (complex) time executing Windows APIs.
I'm trying to detect whether the PC it's being installed on is in ...
0
votes
7answers
223 views
Refactoring two basic classes
How would you refactor these two classes to abstract out the similarities? An abstract class? Simple inheritance? What would the refactored class(es) look like?
public class LanguageCode
{
/// ...