根据国家/地区选择更改货币格式

发布于 2024-11-29 20:54:03 字数 216 浏览 0 评论 0原文

我有一个所有国家/地区的下拉列表。我希望能够根据用户选择的国家/地区以货币格式显示一定金额。 目前我只是使用 amount.ToString("C") 并且它只显示美元符号。但是用户选择了欧洲国家,那么它应该能够以欧元格式显示什么呢? 有没有办法在 c# 中的 dropdownlist selectedindexchanged 事件上实现此目的?

非常感谢您的帮助。 谢谢。

I have a dropdownlist of all countries. I want to be able to display a certain amount in currency format based on the country selected by user.
Currently I'm just using amount.ToString("C") and it just displays the dollar sign. But what the user selects a european country then it should be able to display in Euro format?
Is there any way to achieve this in c# on the dropdownlist selectedindexchanged event perhaps?

Help would be much appreciated.
Thanks.

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

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

发布评论

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

评论(2

婴鹅 2024-12-06 20:54:03

改编自针对特定区域性设置数字数据格式

CultureInfo info;
if (country == "Poland")
{
  info = new CultureInfo("pl-PL");
}
else if (country == "England")
{
  info = new CultureInfo("en-GB");
}
else
{
  info = new CultureInfo("en-US");
}
Console.WriteLine((1.23).ToString("c", info));

Adapted from Formatting Numeric Data for a Specific Culture:

CultureInfo info;
if (country == "Poland")
{
  info = new CultureInfo("pl-PL");
}
else if (country == "England")
{
  info = new CultureInfo("en-GB");
}
else
{
  info = new CultureInfo("en-US");
}
Console.WriteLine((1.23).ToString("c", info));
几味少女 2024-12-06 20:54:03
decimal price = 123.45m;
int discount = 50;
Console.WriteLine(
quot;Price: {price:C} (Save {discount:C})");
decimal price = 123.45m;
int discount = 50;
Console.WriteLine(
quot;Price: {price:C} (Save {discount:C})");
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文