我试图枚举本地计算机上的所有现有组。
我尝试使用wmi:
string _class = "Win32_GroupUser";
string namespace = "\\\\.\\ROOT\\cimv2";
ManagementClass _class = new ManagementClass(namespace + ":" + class );
foreach (ManagementObject _object in _class.GetInstances())
{
richTextBox1.AppendText((_object["GroupComponent"].ToString()));
}
输出示例:
\ DESKTOP-2MSGC9J \根\ CIMV2:Win32_Group.Domain =" DESKTOP-2MSGC9J",名称=" Utilisateurs du journal de performance"
在此输出中,只有组名Name="Utilisateurs du journal de performances"
对我很重要。
这是一种只在这个_object
中返回该元素的wmi查询吗?
可能有foreach
的另一个_object
。
答案 0 :(得分:0)
在从wmi获取对象后,我发现使用-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell" forIndexPath:indexPath];
cell.textLabel.text = [self.todoArray objectAtIndex:indexPath.row];
cell.textLabel.numberOfLines = 0; // allow multiple lines showing up
return cell;
}
的方式很脏。
substring