根据文化显示日期,但根据模式显示时间
有谁知道如何显示 基于 CurrentCulture 的日期时间的日期,但时间遵循此模式 "HH:mm:ss.fff"
?
我尝试使用:
DateTime NewDate = DateTime.Now; NewDate.ToString(CultureInfo.CurrentCulture);
结果:2010 年 4 月 6 日 14:49:41。
预计时间:2010 年 4 月 6 日 14.49.41,495。
对于时间,我还需要显示毫秒,但日期格式必须仍然基于文化。
Does anybody know how to display
the date of a datetime based on a CurrentCulture but the Time follow this pattern "HH:mm:ss.fff"
?
I've tried to use:
DateTime NewDate = DateTime.Now;
NewDate.ToString(CultureInfo.CurrentCulture);
It results: 4-6-2010 14:49:41.
Expected: 4-6-2010 14.49.41,495.
For the Time, I also need to show the miliseconds but the Date format must be still based on the culture.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果不希望使用当前区域性来格式化日期字符串,您可以创建 CultureInfo 的实例并将其传递给 ToString 方法
If do not wish to use the current culture to format your datestring you can create an instance of CultureInfo and pass it to your ToString method
来自 MSDN:
此方法使用从当前区域性派生的格式信息。特别是,它组合了由 Thread.CurrentThread.CurrentCulture.DateTimeFormat 属性返回的 DateTimeFormatInfo 对象的 ShortDatePattern 属性返回的自定义格式字符串和 LongTimePattern 属性。
From MSDN:
This method uses formatting information derived from the current culture. In particular, it combines the custom format strings returned by the ShortDatePattern and LongTimePattern properties of the DateTimeFormatInfo object returned by the Thread.CurrentThread.CurrentCulture.DateTimeFormat property