找不到类型或命名空间名称'ManagementEventWatcher'



为什么在以下代码中找不到类型或命名空间名称"ManagementEventWatcher":

using System;
using System.Collections.Generic;
using System.Text;
using System.Runtime.InteropServices;
using System.Diagnostics;
using System.Management;
class Program {
    public ManagementEventWatcher mgmtWtch;
    static void Main(string[] args)
    {
        InitializeComponent();
        mgmtWtch = new System.Management
                     .ManagementEventWatcher("Select * From Win32_ProcessStartTrace");
        mgmtWtch.EventArrived += new    
            System.Management.EventArrivedEventHandler(mgmtWtch_EventArrived);
        mgmtWtch.Start();
    }
}

我想我的dll没有这个方法,但是如何检查?

您添加了引用和使用吗?例如

using System.Management;

还不够。。您还需要添加对System.Management的引用。

Main方法是静态的,但mgmWtch变量不是。将其声明为静态。

相关内容

  • 没有找到相关文章

最新更新