如何通过两个(或更多)属性获取唯一记录? 我有类型为
的对象的ArrayListclass Something
{
[string] $Name
[string] $Key
[string] $SomethingElse
[string] $Val
}
我想从$name,$key,$somethingelse
答案 0 :(得分:1)
只需将您的列表发送到#include <iostream>
using namespace std;
bool isPrime(int);
void main()
{
int InNumber;
cout << "Enter a number to check if it is prime or not." << endl;
cin >> InNumber;
isPrime(InNumber);
if (isPrime())
{
cout << "number is prime." << endl;
}
}
bool isPrime(int Check)
{
for (int i = 2; i < Check; i++)
{
if (Check % 88 == 0)
return false;
else
return true;
}
}
,就像这样:
group-object
$List | Group-Object Name, Key, Somethingelse | Where-Object Count -eq 1 | Select-Object -Expand Group
创建具有相同属性的groups对象。您可以按照计数和/或属性过滤组。之后,您可以通过展开Group-Object
属性