使用货币的最佳实践

发布于 2024-11-30 03:17:29 字数 317 浏览 1 评论 0原文

我正在开发一个可能在全球范围内部署的桌面应用程序。我对国际化最大的问题是货币。有几个问题:

我使用的是 SQL Server Compact Edition,它支持 MONEY 类型。我的第一个问题是,无论用户的文化如何,这都会处理数据存储吗?

我的第二个问题是数据处理。我知道我可以使用“C”格式字符串,我想这对于显示来说是可以的,但是当保存回来时我如何处理用户输入的值?是否有一种标准方法可以解析输入的值并将其保存到 MONEY 字段,同时具有文化意识并且不必编写任何类型的异常?

我正在 WPF 中使用 C#,但我猜测可能有一个几乎通用的解决方案来解决所有这些问题。

I'm working on a desktop application that may potentially be deployed world-wide. My biggest issue with internationalization is currencies. A couple questions:

I'm using SQL Server Compact Edition, which supports the MONEY type. My first question is will this handle data storage regardless of the user's culture?

My second question is data processing. I know I can use the "C" format string, and I guess that's all right for displaying, but when saving back how do I handle user-entered values? Is there a standard way to parse the entered value and save it to the MONEY field, all while being culture-aware and not having to write for any kind of exceptions?

I'm working with C# in WPF, but I'm guessing there is probably a near-universal solution to all this.

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

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

发布评论

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

评论(1

兰花执着 2024-12-07 03:17:29

MONEY 类型只是告诉系统使用正确处理货币计算所需的精度和舍入规则。它对实际货币一无所知。您需要在 UI 中并使用货币转换规则来处理该问题。

该框架使用当前区域性来显示货币字符串格式的正确货币符号,但如果您显示不同的货币,则需要覆盖此行为。

对于 C#/WPF(和 Silverlight),如果您在 XAML 中使用 StringFormat 输出货币,那么它也会处理用户输入(或者至少根据我的经验)。

The MONEY type just tells the system to use the required accuracy and rounding rules required to handle monetary calculations properly. It doesn't know anything about the actual currency. You need to handle that in the UI and with currency conversion rules.

The framework uses the current culture to display the correct currency symbol for monetary string formats, but if you are displaying different currencies you'll need to override this behaviour.

With C#/WPF (and Silverlight) if you output the currency using the StringFormat in XAML then it handles the user input as well (or at least it has in my experience).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文