ISO Currency code - existing enum in .NET ?

  • Thread starter Thread starter José Joye
  • Start date Start date
J

José Joye

Hello,

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

Thanks,
-José
 
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
 
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é
 
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.
 
Back
Top