This question already has answers here:
How to get the “friendly” OS Version Name?

(12个答案)


3年前关闭。




我有此C#代码:
public static void Main(string[] args)
{
    string os = System.OperatingSystem;
    Console.ForegroundColor = ConsoleColor.White;
    //..and more

并说“'System.OperatingSystem'是一个'类型',在给定上下文中无效(CS0119)”。那么如何删除此错误?

最佳答案

System.OperatingSystem是一种类型,您无法将其分配给变量。您想实现什么?正在运行的操作系统的名称?您可以这样做:

Environment.OSVersion.ToString()

10-07 15:32