ManagementObject Class not showing up in System.Management namespace

前端 未结 7 1203
陌清茗
陌清茗 2020-12-28 11:53

I\'m trying to write some WMI in my windows form and the ManagementObject is givin me the

\"The type or namespace name \'ManagementObject\' could not be found\" Err

7条回答
  •  庸人自扰
    2020-12-28 12:32

    You need to add a reference to System.Management.dll to your project.

    You can see System.Management.Instrumentation without adding a reference to System.Management.dll because it is included in a different library (System.Core.dll, which is included as a reference automatically), but you cannot access the other types contained by that namespace without explicitly adding a reference to the System.Management.dll library.

提交回复
热议问题