C# 定义另一个时区的日期的开始时间

发布于 2024-08-11 21:55:24 字数 214 浏览 6 评论 0原文

我想使用 .NET/C# 定义另一个时区的一天的开始。

例子: 我当前的时区 = GMT+1 所以 DateTime.Today 返回 19/11/2009 23:00 UTC

但实际上我想获取时区 GMT+2 的 DateTime.Today ,即 19/11/2009 22:00 UTC。

我该如何做到这一点而不需要考虑偏移量和偏移量?夏令时计算?

I want to define the begin of a day in another timezone with .NET/C#.

Example:
My current timezone = GMT+1
so DateTime.Today returns 19/11/2009 23:00 UTC

but actually I want to get the DateTime.Today for timezone GMT+2 which would be 19/11/2009 22:00 UTC.

How do I do this without juggling with offsets & daylightsaving calculations?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

沧桑㈠ 2024-08-18 21:55:24

您可以使用TimeZoneInfo.ConvertTime。这是 .NET 3.5 中的新增功能。

You can use TimeZoneInfo.ConvertTime. This is new in .NET 3.5.

心如荒岛 2024-08-18 21:55:24

尝试:

var zone = TimeZoneInfo.GetSystemTimeZones().First(tz => tz.StandardName == DesiredTimeZoneName);
Debug.WriteLine(new DateTimeOffset(DateTime.UtcNow.Date.Ticks, zone.BaseUtcOffset).ToUniversalTime());

据我所知,没有其他方法可以做到这一点。

Try:

var zone = TimeZoneInfo.GetSystemTimeZones().First(tz => tz.StandardName == DesiredTimeZoneName);
Debug.WriteLine(new DateTimeOffset(DateTime.UtcNow.Date.Ticks, zone.BaseUtcOffset).ToUniversalTime());

AFAIK, there's no other way to do this.

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