我正在尝试使用 Openhardwaremonitor.dll 读取 CPU 温度,但无法正确读取。
If cp. = SensorType.Temperature Then
Trace.WriteLine([String].Format("{0} Temperature = {1}", sensor.Name, If(sensor.Value.HasValue, sensor.Value.Value.ToString(), "no value")))
End If
错误说:
错误 4“OpenHardwareMonitor.Hardware.Sensor”在此上下文中不可访问,因为它是“朋友”。
但是,当我在程序中导入 DLL 时,应该可以访问友元函数。
请帮忙