我正在尝试将一个数组作为值分配给字典条目,如下所示,但它抛出异常。
$sd = New-Object 'System.Collections.Generic.SortedDictionary[int, string[]]'
$sd[0] = "Data1a", "asda";
有什么想法吗?
答案 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"