我需要使用.NET或MONO进行C#/ F#编程。 我怎么知道我的C#/ F#代码在哪个平台上运行?
答案 0 :(得分:6)
你不应该这样做。但是,如果确实有必要,可以检查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");