这些格式约定有什么意义吗?

发布于 2024-10-15 01:30:46 字数 335 浏览 2 评论 0原文

String.Format("{0:d}", item.ReleaseDate)

在上面的代码中,“d”用于 item.ReleaseDate 的位置保持符,

而“c”则

String.Format("{0:c}", item.Price)

用于 item.Price 的占位符。

是否存在任何限制,即仅应将 d 用于 DateTime 而将 c 用于价格?

请原谅我是技术惯例方面的菜鸟。请在约定中也纠正我。

String.Format("{0:d}", item.ReleaseDate)

In the above code 'd' is used for location holder for item.ReleaseDate

Whereas in

String.Format("{0:c}", item.Price)

'c' is used for placeholder for item.Price.

Are there any constraints that only d should be used for DateTime and c should be used for price?

Pardon me am a noob in technical conventions. Please correct me in the conventions too.

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

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

发布评论

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

评论(1

邮友 2024-10-22 01:30:47

在您的示例中,d 代表十进制,c 代表货币。含义可以根据将用于代替占位符的变量进行更改

http://sharpertutorials.com/string -formatting/

而且,这些约定在很大程度上是特定于语言的。一种语言的规则可能不适用于其他语言。

d for decimal, c for currency in your example. Meaning can be changed depending on the variable that will be used in place of the placeholder

http://sharpertutorials.com/string-formatting/

And, these conventions are very much language specific. Rules of one language may not be valid for others.

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