C# system.management 未加载
C# system.management is not loaded
我正在尝试在 VS 2017 中的 C# windows 表单应用程序中使用 system.management,但它无法正常工作。
这是一个代码示例:
using System;
using System.Windows.Forms;
using System.Management;
namespace MyWMIapp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void okButton_Click(object sender, EventArgs e)
{
ManagementScope scope = new ManagementScope(@”\MyComputerName\root\CIMV2″);
}
}
}
在:"using System.Management;" 它告诉我:这不是 needed/used。
在:"ManagementScope scope = ......" 它告诉我:未找到(可能缺少 using-Directive),并带有红色下划线。
两者显然都是错误的。我正在加载它并正在使用它。为什么这两行 "see" 不是彼此?
将对 System.Management.dll 的引用添加到您的项目中。
我正在尝试在 VS 2017 中的 C# windows 表单应用程序中使用 system.management,但它无法正常工作。 这是一个代码示例:
using System;
using System.Windows.Forms;
using System.Management;
namespace MyWMIapp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void okButton_Click(object sender, EventArgs e)
{
ManagementScope scope = new ManagementScope(@”\MyComputerName\root\CIMV2″);
}
}
}
在:"using System.Management;" 它告诉我:这不是 needed/used。
在:"ManagementScope scope = ......" 它告诉我:未找到(可能缺少 using-Directive),并带有红色下划线。
两者显然都是错误的。我正在加载它并正在使用它。为什么这两行 "see" 不是彼此?
将对 System.Management.dll 的引用添加到您的项目中。