gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-05 00:05:20 25 4
gpt4 key购买 nike

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

$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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com