有没有更好的方法来格式化这个日期字符串
是否有更好的方法来构造这行代码,如您所见,我正在更改包含日期的字符串的格式。
lblCourseStartDate.Text = String.Format("{0:D}", DateTime.Parse(CourseStartDate));
我只是发现我转换了两三次才能得到我想要的格式,这很不整洁。
谢谢
is there are better way to structure this line of code, as you can see, I am changing the format of a string that contains a date.
lblCourseStartDate.Text = String.Format("{0:D}", DateTime.Parse(CourseStartDate));
I just found it untidy that I am converting twice or three times to get the format I want.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以执行
DateTime.Parse(CourseStartDate)).ToLongDateString()
或DateTime.Parse(CourseStartDate)).ToString("D")
,这可能会更干净一些。但是,无论你做什么,你基本上都只能先进行解析,然后进行格式化。You can do
DateTime.Parse(CourseStartDate)).ToLongDateString()
orDateTime.Parse(CourseStartDate)).ToString("D")
, which might be a little cleaner. But, you're basically stuck doing the Parse and then the Format regardless of what you do.