我有一个简单的 PowerShell 函数
function Foo($a, $b){
'$a = ' + $a
'$b = ' + $b
}
我通过调用来调用它
Foo("dogs", "cat");
到目前为止我读过的所有内容都表明预期的输出是
$a = dogs
$b = cats
我实际看到的是:
$a = dogs cat
$b =
如果我将我的函数重写为:
function Foo($a, $b){
'$a is ' + $a.GetType().Name;
'$b = ' + $b.GetType().Name;
}
输出是:
$a is Object[]
You cannot call a method on a null-valued expression.
At C:\WCMTeam\Percussion\Notifier\foo.ps1:4 char:7
+ '$b = ' + $b.GetType().Name;
+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : InvalidOperation: (:) [], RuntimeException
+ FullyQualifiedErrorId : InvokeMethodOnNull
显然 $a 和 $b 被组合成一个数组。我在做什么来导致这种情况,我应该如何改变它以获得我的预期结果?