类型或命名空间名称“ManagementEventWatcher”未找到

发布于 2024-11-13 02:17:58 字数 695 浏览 2 评论 0原文

为什么我在以下代码中得到未找到类型或命名空间名称“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 没有此方法,但如何检查?

Why do I get The type or namespace name 'ManagementEventWatcher' not found in the following code:

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();
    }
}

I think my dll doesn't have this method, but how to check?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

浅黛梨妆こ 2024-11-20 02:17:58

您添加了参考以及使用吗?例如

using System.Management;

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

Have you added the reference as well as the using? eg

using System.Management;

is not enough.. you need to add the reference to System.Management too.

缘字诀 2024-11-20 02:17:58

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

Your Main method is static, but your mgmWtch variable is not. Declare it as as static.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文