这些格式约定有什么意义吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在您的示例中,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.