gpt4 book ai didi

c# - 访问 DateTime.Now 时崩溃

转载 作者:行者123 更新时间:2023-11-30 18:15:56 24 4
gpt4 key购买 nike

以下 C# 代码在为 .Net 4.5 构建时作为控制台应用程序在 Win 10 开发箱上运行正常:

static void Main(string[] args)
{
try
{
Console.Write(DateTime.Now.ToString());
}
catch (Exception Ex)
{
Console.Write(Ex.Message);
}

}

但是当在装有 .Net 4.6.1 的 Win 7 机器上运行时,它开始崩溃并显示以下消息:

    Unhandled Exception: System.Runtime.InteropServices.SEHException: External compo
nent has thrown an exception.
at System.TimeZoneInfo.TransitionTime.Equals(TransitionTime other)
at System.TimeZoneInfo.CreateAdjustmentRuleFromTimeZoneInformation(RegistryTi
meZoneInformation timeZoneInformation, DateTime startDate, DateTime endDate, Int
32 defaultBaseUtcOffset)
at System.TimeZoneInfo..ctor(TimeZoneInformation zone, Boolean dstDisabled)
at System.TimeZoneInfo.GetLocalTimeZoneFromWin32Data(TimeZoneInformation time
ZoneInformation, Boolean dstDisabled)
at System.TimeZoneInfo.CachedData.GetCurrentOneYearLocal()
at System.TimeZoneInfo.CachedData.GetOneYearLocalFromUtc(Int32 year)
at System.TimeZoneInfo.GetDateTimeNowUtcOffsetFromUtc(DateTime time, Boolean&
isAmbiguousLocalDst)
at System.DateTime.get_Now()
at DateCrashTest.Program.Main(String[] args) in c:\Users\Simon\Documents\Visu
al Studio 2013\Projects\DateCrashTest\DateCrashTest\DateCrashTest\Program.cs:lin
e 15

我有两个问题:

1)为什么异常没有被捕获?

2) 为什么程序在具有相同 .Net 框架和相同时区的不同 Win7 机器上运行正常?我检查了问题框上的 .Net Framework Install,它似乎没问题。该问题是最近出现的 - 它不是几天前出现的。重新启动没有帮助。

最佳答案

问题不在您的代码中。该特定 Windows 7 实例很可能存在问题。正如其他人已经建议的那样,您可以运行 sfc/scannow,但它也可能是损坏的注册表或其他东西。

我建议重新安装机器,因为这是解决此问题的最简单和最快的方法。

关于c# - 访问 DateTime.Now 时崩溃,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47447289/

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