如何将字符串转换为货币?

发布于 2024-10-18 01:46:58 字数 498 浏览 3 评论 0原文

我正在使用 2 个 Web 服务:

http://www.webservicex.com/currencyconvertor.asmx?WSDL

http://www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso

第二个 Web 服务是我使用 ListOfCurrencyByCode 方法并获取货币的 isoCode 并将其列在 dropdownlist1.DataTextField = "sISOCode";我得到了所有国家的 ISOCODE。

现在我想使用 webmethod ConversionRate 使用第一个链接 Web 服务来转换值。我该如何转换?ConversionRate 方法似乎只需要我输入

 ConversionRate(Currency fromcurrency, Currency tocurrency).

我该怎么做?

i am using 2 web services:

http://www.webservicex.com/currencyconvertor.asmx?WSDL

http://www.oorsprong.org/websamples.countryinfo/CountryInfoService.wso

One the second webservice i used ListOfCurrenciesByCode method and got the isoCode of currency and listed it in a dropdownlist1.DataTextField = "sISOCode"; and i get all the countries' ISOCODE.

Now i want to convert values using first link webservice using webmethod ConversionRate. How do i convert ?the ConversionRate method only seems to want me to input

 ConversionRate(Currency fromcurrency, Currency tocurrency).

How do i do that?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

假面具 2024-10-25 01:46:58
String.Format("{0:C}", value);

文档:http://msdn.microsoft.com/en-us/library/dwhawy9k .aspx

String.Format("{0:C}", value);

Documentation: http://msdn.microsoft.com/en-us/library/dwhawy9k.aspx

野侃 2024-10-25 01:46:58

摘自此处

public string getConversionRate(string CurrencyFrom, string CurrencyTo)
{
   CurrencyConvertor curConvertor = new CurrencyConvertor();
   double rate = curConvertor.ConversionRate(
      (Currency)Enum.Parse(typeof(Currency), CurrencyFrom),
      (Currency)Enum.Parse(typeof(Currency), CurrencyTo));
   return rate.ToString();
}

Taken from here

public string getConversionRate(string CurrencyFrom, string CurrencyTo)
{
   CurrencyConvertor curConvertor = new CurrencyConvertor();
   double rate = curConvertor.ConversionRate(
      (Currency)Enum.Parse(typeof(Currency), CurrencyFrom),
      (Currency)Enum.Parse(typeof(Currency), CurrencyTo));
   return rate.ToString();
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文