将数组分配给Powershell中的字典条目

时间:2011-01-11 14:40:33

标签: powershell powershell-v2.0

我正在尝试将一个数组作为值分配给字典条目,如下所示,但它抛出异常。

$sd = New-Object 'System.Collections.Generic.SortedDictionary[int, string[]]'
$sd[0] = "Data1a", "asda";

有什么想法吗?

1 个答案:

答案 0 :(得分:7)

使用强制转换为[string[]]

$sd = New-Object 'System.Collections.Generic.SortedDictionary[int, string[]]'
$sd[0] = [string[]]("Data1a", "asda")

另一个选项是将字典值类型更改为object[]

$sd = New-Object 'System.Collections.Generic.SortedDictionary[int, object[]]'
$sd[0] = "Data1a", "asda"