# exclusive $copy = New-Object System.Collections.Generic.HashSet[string] $set1 $copy.ExceptWith($set2) "Exclusive in Set 1" "$copy"
# exclusive either side $copy = New-Object System.Collections.Generic.HashSet[string] $set1 $copy.SymmetricExceptWith($set2) "Exclusive in both (no duplicates)" "$copy"
以下是执行结果:
Original Sets:
Harry Mary Terri
Tom Tim Terri Tobias
In Both
Terri
All Combined
Harry Mary Terri Tom Tim Tobias
Exclusive in Set 1
Harry Mary
Exclusive in both (no duplicates)
Harry Mary Tobias Tom Tim