gpt4 book ai didi

c# - TimeZoneInfo - .net core 1.1 上的调整规则错误

转载 作者:行者123 更新时间:2023-11-30 21:41:33 24 4
gpt4 key购买 nike

我有一段代码可以让我获取当前日期/时间(本地)。

它将在 Azure 上运行。

我正在获取世界时间并将其转换为英国本地时间(考虑到 BST - 英国夏令时间)。

从 .NET 4.6.1/Core 项目迁移到 .NET Core 1.1 时,我现在遇到了错误。

The type name 'AdjustmentRule' does not exist in the type 'TimeZoneInfo'

'TimeZoneInfo' does not contain a definition for 'GetAdjustmentRules' and no extension method 'GetAdjustmentRules' accepting a first argument of type 'TimeZoneInfo' could be found (are you missing a using directive or an assembly reference?)

仅使用 .NET Core 1.1 - 如何解决此问题?

public static DateTime GetLocalDateTimeNow()
{
DateTime localDate = System.DateTime.Now.ToUniversalTime();

// Get the venue time zone info
TimeZoneInfo tz = TimeZoneInfo.FindSystemTimeZoneById("GMT Standard Time");
TimeSpan timeDiffUtcClient = tz.BaseUtcOffset;
localDate = System.DateTime.Now.ToUniversalTime().Add(timeDiffUtcClient);

if (tz.SupportsDaylightSavingTime && tz.IsDaylightSavingTime(localDate))
{
TimeZoneInfo.AdjustmentRule[] rules = tz.GetAdjustmentRules();
foreach (var adjustmentRule in rules)
{
if (adjustmentRule.DateStart <= localDate && adjustmentRule.DateEnd >= localDate)
{
localDate = localDate.Add(adjustmentRule.DaylightDelta);
}
}
}

DateTimeOffset utcDate = localDate.ToUniversalTime();

return localDate;
}

我不介意替换实现,只要它考虑到 BST 并在 .net core 1.1(不含 4.6.1)上运行即可。

最佳答案

您不需要自己执行任何操作 - 只需要求 TimeZoneInfo 进行转换即可。这就是它的用途!

// Only need to do this once...
private static readonly TimeZoneInfo londonZone =
TimeZoneInfo.FindSystemTimeZoneById("GMT Standard Time");

public static DateTime GetUkDateTimeNow() =>
TimeZoneInfo.ConvertTime(DateTime.UtcNow, londonZone);

一些注意事项:

  • 我已将 GetLocalDateTimeNow() 重命名为 GetUkDateTimeNow(),以明确它始终处理英国时区,而不是特定的本地时区用户或计算机
  • 在 Unix 上,您需要询问“Europe/London”,而不是“GMT Standard Time”
  • 为了使其独立于其中任何一个 - 实际上独立于系统本地时区数据 - 您可以使用我的 Noda Time project我想这会给你带来更干净的代码。

几乎没有人需要在代码中处理 AdjustmentRule。我在 Noda Time 中这样做,因为我需要能够将 TimeZoneInfo 区域表示为 Noda Time DateTimeZone 对象,但这非常不寻常。如果您确实需要使用它们,它们比您想象的要复杂得多,并且 .NET 实现中已经出现了多次错误;我目前(就像今天一样)正在与 Mono 实现中的错误作斗争......

顺便说一句,我强烈敦促您不要在任何地方使用DateTime.Now。始终使用 DateTime.UtcNow,然后根据需要转换为系统本地时区。

关于c# - TimeZoneInfo - .net core 1.1 上的调整规则错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43241969/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com