我正在尝试编写一个 PowerShell cmdlet,它接受单个参数的多个输入。
例如,我可以轻松地执行以下操作:
Get-CountryList -Group "a" -Category "x"
但我想做这样的事情:
Get-CountryList -Groups "a b c d" -Category "x"
(或者)
Get-CountryList -Groups "a,b,c,d" -Category "x"
我搜索了,但我找不到如何做到这一点。
我该怎么做?