Gets the name of the currency used in the country/region, formatted in the native language of the country/region.
Documentation for this section has not yet been entered.
If the current System.Globalization.RegionInfo object is created with a specific culture and more than one language is used in the corresponding country/region, the RegionInfo.CurrencyNativeName property retrieves the currency name associated with the specific culture.
The value of this property depends on the language that is associated with a particular country/region. Therefore, if you intend to use the RegionInfo.CurrencyNativeName property, you should instantiate the System.Globalization.RegionInfo object by passing the RegionInfo.#ctor(string) constructor a combined language and country/region code. For example, if a System.Globalization.RegionInfo object is instantiated with a combined language and country/region code of "en-CA" for English (Canada), the value of its RegionInfo.CurrencyNativeName property is "Canadian Dollar". If it is instantiated with a combined language and country/region code of "fr-CA" for French (Canada), the value of its RegionInfo.CurrencyNativeName property is "Dollar canadien". Therefore, creating the RegionInfo object with only a country/region name ("CA" in this case) is not specific enough to distinguish the appropriate native currency name.