gpt4 book ai didi

c# - 获取上次重启时间

转载 作者:太空狗 更新时间:2023-10-29 20:05:35 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Displaying the build date
How to know when was Windows started or shutdown?

出于我的目的,我正在编写一个 C# 可执行文件,它将计算当前时间与上次重新启动服务器的时间之间的时间差(分钟)。

我现在正在做的是捕获和解析 cmd -> “net stats server” 的输出并创建一个新的 DateTime 对象,然后将其与 DateTime.Now 使用 TimeSpan 对象。

有没有更简洁的方法来不使用第 3 方下载?我担心并非所有来自“网络统计服务器”的日期格式都是我期望的格式。

** 编辑我的错误,这是重复的,但我的解决方案是值得的:

float ticks = System.Environment.TickCount;
Console.WriteLine("Time Difference (minutes): " + ticks / 1000 / 60);
Console.WriteLine("Time Difference (hours): " + ticks / 1000 / 60 / 60);
Console.WriteLine("Time Difference (days): " + ticks / 1000 / 60 / 60 / 24);

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