ISO Currency code - existing enum in .NET ?

J

José Joye

Hello,

Is there an enum available within the .NET library which gives the valid ISO
currency code?

Thanks,
-José
 
R

rossum

Hello,

Is there an enum available within the .NET library which gives the valid ISO
currency code?

Thanks,
-José
If you search in Help for the RegionInfo class there is a list of all
the ISO three letter currency symbols. They appear to be stored as
strings, not an enumeration, see the RegionInfo.ISOCurrencySymbol
property.

rossum
 
J

José Joye

Thanks,

The RegionInfo.ISOCurrencySymbol returns the ISO currency for the current
region.
What I was expecting is a kind of list that returns me all the available ISO
symbol so as to check it for validity.

- José
 
M

Mihai N.

The RegionInfo.ISOCurrencySymbol returns the ISO currency for the current
region.
What I was expecting is a kind of list that returns me all the available
ISO symbol so as to check it for validity.
You can enumerate RegionInfo, get the ISO currency symbol for each and make
your own list.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Top