输出 -
PS C:\WINDOWS\system32> print_String cmdlet print_String at command pipeline position 1 Supply values for the following parameters: name: Writing a single string
在上面的示例中,您可以看到添加了参数之后AllowEmptyString()
,程序将接受Empty字符串。同样,当您添加AllowEmptyCollection()
参数时,PowerShell将接受数组的空值。
function print_String{ [cmdletbinding()] param( [parameter(Mandatory=$True)] [AllowEmptyCollection()] [string[]]$stringarray ) Write-Output "Writing a string array" $stringarray }
输出结果
PS C:\WINDOWS\system32> print_String cmdlet print_String at command pipeline position 1 Supply values for the following parameters: stringarray[0]: Writing a string array