ManagementObject的PropertyData值是个啥玩意?
C#2.0 WMI
using System.Management;string s;
ManagementObjectSearcher searcher = new ManagementObjectSearcher("Select * From Win32_NetworkAdapter");
ManagementObjectCollection collection = searcher.Get();
foreach (ManagementObject obj in collection)
{
object o = obj.GetPropertyValue("PNPDeviceID"); //null
s = o + ""; //得到值
s = o as string; //null
s = s + ""; //再次得到值
s = o.ToString(); //error。提示 o 为null。
}
具体地说,只有在隐式转换为字符串的时候,PropertyData.Value
才会变成想要的具体值,否则一直识别为null
。
于是,这货到底是啥?
回答:
我这里只有两种场景:
- 场景A:
o
为null,o==null
为true,o+""
为空串,o as string
为空串,o.ToString()
报错 - 场景B:
o
不为null,o==null
为false,o+""
为非空串,o as string
为非空串,o.ToString()
为非空串。
形如object o = xxx.get("yyy")
的语句,是常见于面向接口编程/泛型编程里面的的类型擦除机制,用于以一致的流程得到不同数据集里面的不同类型的值。
o不总是为String,它可能为null。所以,你的前三个语句不会导致出错,toString则有可能。
这是我在C# 4.0里面的执行结果:
你自己执行一下吧,代码不是第一行就出错,是在o==null
的时候才出错。所以主要问题出现在流程控制。
class Program{
static void Main(string[] args)
{
String s;
ManagementObjectSearcher searcher = new ManagementObjectSearcher("Select * From Win32_NetworkAdapter");
ManagementObjectCollection collection = searcher.Get();
var i = 0;
foreach (ManagementObject obj in collection)
{
Console.WriteLine(i++);
object o = obj.GetPropertyValue("PNPDeviceID");
s = o + "";
Console.WriteLine(s);
s = o as string;
Console.WriteLine(s);
s = s + "";
Console.WriteLine(s);
s = o.ToString();
Console.WriteLine(s);
Console.Read();
}
}
}
最后,在这种情况下,是可以通过调用o.GetType()
来获取它的运行时类型的(quot)。
在你的程序上下文中,如果o不为null,o.GetType().toString()
返回的是System.String
以上是 ManagementObject的PropertyData值是个啥玩意? 的全部内容, 来源链接: utcz.com/p/190416.html