根据文化显示日期,但根据模式显示时间

发布于 2024-09-04 19:15:45 字数 292 浏览 4 评论 0原文

有谁知道如何显示 基于 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 技术交流群。

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

发布评论

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

评论(2

浮生未歇 2024-09-11 19:15:45
string s = String.Format("{0} {1}", NewDate.ToString("d"), NewDate.ToString("HH:mm:ss.fff"));

如果不希望使用当前区域性来格式化日期字符串,您可以创建 CultureInfo 的实例并将其传递给 ToString 方法

CultureInfo ci = new CultureInfo("en-US");
string s = String.Format("{0} {1}", NewDate.ToString("d", ci ), NewDate.ToString("HH:mm:ss.fff"));
string s = String.Format("{0} {1}", NewDate.ToString("d"), NewDate.ToString("HH:mm:ss.fff"));

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

CultureInfo ci = new CultureInfo("en-US");
string s = String.Format("{0} {1}", NewDate.ToString("d", ci ), NewDate.ToString("HH:mm:ss.fff"));
尹雨沫 2024-09-11 19:15:45
  NewDate.Date.ToString(Thread.CurrentThread.CurrentCulture.DateTimeFormat.ShortDatePattern) + 
     NewDate.TimeOfDay.ToString("HH:mm:ss.fff");

来自 MSDN

此方法使用从当前区域性派生的格式信息。特别是,它组合了由 Thread.CurrentThread.CurrentCulture.DateTimeFormat 属性返回的 DateTimeFormatInfo 对象的 ShortDatePattern 属性返回的自定义格式字符串和 LongTimePattern 属性。

  NewDate.Date.ToString(Thread.CurrentThread.CurrentCulture.DateTimeFormat.ShortDatePattern) + 
     NewDate.TimeOfDay.ToString("HH:mm:ss.fff");

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

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