Is there any library that covers ISO standards of international abbreviations, formats and other, or everybody uses his version of CountryCodes like:

    public enum CountryCode
    {
        AL, // Albania
        AD, // Andorra
        AM, // Armenia
        AT, // Austria
        ...
    }

Want to have country codes, currency and funds name and code elements

BCL implements many ISO standards but they spread among a lot of classes. Will be useful when you know, that if you need to format date by ISO 8601, you use Iso.Formatting.Format(DateTime.Now);

PS: I know about System.Globalization.CultureInfo

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

The RegionInfo class is your primary resource. It includes currency names (ISO, English and native) and two and three letter region names.

link|improve this answer
It pretty close. I knew about it, but it is not very useful (for ex. it is hard to find country by Currency code). I thought about something more generic. – Orsol Jun 29 '10 at 8:39
1  
It's got the data you need. Treat it like a data source, write your own code to make it useful in your program. – Hans Passant Jun 29 '10 at 8:45
I mark this as answer, because it looks like right answer. But it is my fault that I composed not definite question. – Orsol Jul 1 '10 at 14:34
feedback

Since you want ISO standards, a good place to start is iso.org:

http://www.iso.org/iso/iso_catalogue.htm

link|improve this answer
Good place, but I didn't find (and sure that will not find) there something like .Net assembly or c# code snippet. – Orsol Jun 28 '10 at 14:23
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.