我需要读取System.Management.PropertyData
它何时是数组的值。
PropertyData.IsArray 属性
我不知道如何转换PropertyData.Value
为可读的东西。PropertyData.Value
如果我按原样打印,我会得到一个“System.String[]”
如果我将其转换为array<String>
for each(String s in (array<String>^)(object->Properties[propertyName]->Value))
Console::WriteLine(s);
我得到一个
错误(活动) cli::array 的元素类型必须是句柄或值类型
任何帮助,将不胜感激。