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

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

任何想法?

最佳答案

使用强制转换为 [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"

关于powershell - 将数组分配给 Powershell 中的字典条目,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/4658759/

10-13 07:46