问题描述
有关货币code ISO 4217,我该如何找回数值从.NET框架中?
For the currency code ISO 4217, how do I retrieve the numeric value from within the .NET framework?
例如,对于美元的数值为840。
For example, the numeric value for the US Dollar is 840.
推荐答案
在ISO3166货币codeS(840美元等)都没有在.NET框架。所有你可以从该 RegionInfo
类是ISO4217货币code(<$ C C $> ISOCurrency code )(如美元)和CurrencySymbol(如$)。
The ISO3166 currency codes (840 for U.S. Dollar, etc.) are not available in the .Net framework. All you can get from the RegionInfo
class is the ISO4217 currency code (ISOCurrencyCode
) (e.g. USD) and the CurrencySymbol (e.g. $).
您,我很害怕,必须下载数据的列表,并做映射自己。
You will, I'm afraid, have to download a list of the data and do the mapping yourself.
这篇关于ISO 4217 - 如何检索货币code&QUOT的数值(840);美元和QUOT;在.NET?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!