0

我有以下脚本

$a = @(1, 2, 3)
$b = @(2, 3, 1)
if (compare -ReferenceObject $a -DifferenceObject $b) 
{ 
    echo "Output expected" 
}

我希望脚本输出字符串,因为两个数组的元素顺序不同。

4

1 回答 1

4

你的问题不是很清楚。但你可以做一个:

Compare-Object $a $b -SyncWindow 0

在这里查看一些解释。

于 2013-03-05T18:53:03.280 回答