I have C# code which can generate a list like this, using Cultures (link):
AUD $
CAD $
EUR €
GBP £
JPY ¥
USD $
What I want is a list like this too:
Australian Dollar
Canadian Dollar
Euro
British Pound
Japanese Yen
United States Dollar
What I actually want is that there should be a drop-down style Winforms Combobox, from which the user selects the currency, such as British Pound
, and then through a function or something, GBP
or £
gets returned. This will help me parse the currency value the user might type in the adjacent currency value text box.
So can I use Cultures (or something else which does not require an Internet connection) to get a descriptive Currency Names list ?