设置日期时间值的格式 日期值
有没有一种简单的方法可以以第一、第二、第三……的格式显示日期的日期部分?我怀疑没有通过自定义日期时间格式字符串来执行此操作的方法(我很乐意犯错),那么有人实现了执行此操作的方法吗?
Is there a simple method of displaying the day portion of a date in the format 1st, 2nd, 3rd,…? I suspect that there is no method of doing this through custom datetime formatstrings (I will be very happy to be wrong), so has anyone implemented a way of doing this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是实现这一目标的核心逻辑:
This is the core logic for achieving this end:
您可以使用 DateTime.Day 属性来实现此目的。
You can use the DateTime.Day property for this purpose.