gpt4 book ai didi

c# - 如何在 Ubuntu Server 上的 Mono 中获得系统正常运行时间?

转载 作者:行者123 更新时间:2023-12-04 19:14:50 25 4
gpt4 key购买 nike

我在 Windows 上的代码使用 P/Invoke 调用 GetTickCount64()来自 kernel32.dll 这在 Ubuntu Server 14 上的 Mono 下不起作用 - 我得到 EntryPointNotFoundException .

this approach使用 PerformanceCounter .它适用于 Windows,但是当我在 Linux 上使用它时,计数器名称/类别设置为 System/System Up Time它始终产生零时间跨度。所以它也不起作用。
Environment.Tickount与 Windows 上的工作方式相同,但它每 47 天溢出一次,这会给我的用例带来令人困惑的结果,所以我更喜欢 64 位计数器。

如何在 Ubuntu Server 上使用 Mono 运行的 C# 代码获得系统正常运行时间?

最佳答案

User Lex Li链接到此 closely related question对于 C 代码。

其中的答案是this one建议从 /proc/uptime 读取.这对 C# 代码非常有用 - 它可以使用 File.ReadAllText()然后解析结果字符串。

var uptimeText = File.ReadAllText( "/proc/uptime" );
// Now split the string to extract the first component,
// parse it as double and use TimeSpan.FromSeconds()

关于c# - 如何在 Ubuntu Server 上的 Mono 中获得系统正常运行时间?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42092828/

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