gpt4 book ai didi

.net - 如何检测我的 C#/F# 代码在 Mono 或 .NET 上运行的平台?

转载 作者:行者123 更新时间:2023-12-02 08:58:43 26 4
gpt4 key购买 nike

我需要使用 .NET 或 MONO 进行 C#/F# 编程。我如何知道我的 C#/F# 代码正在什么平台上运行?

最佳答案

你不应该这样做。但是,如果确实有必要,您可以检查 Mono.Runtime 类型。来自 Mono FAQ :

Type t = Type.GetType ("Mono.Runtime");
if (t != null)
Console.WriteLine ("You are running with the Mono VM");
else
Console.WriteLine ("You are running something else");

关于.net - 如何检测我的 C#/F# 代码在 Mono 或 .NET 上运行的平台?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2990323/

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