4
我想按照如下方式將數組賦值爲字典條目,但它的引發異常。將數組賦值給Powershell中的字典條目
$sd = New-Object 'System.Collections.Generic.SortedDictionary[int, string[]]'
$sd[0] = "Data1a", "asda";
任何想法?
我想按照如下方式將數組賦值爲字典條目,但它的引發異常。將數組賦值給Powershell中的字典條目
$sd = New-Object 'System.Collections.Generic.SortedDictionary[int, string[]]'
$sd[0] = "Data1a", "asda";
任何想法?
使用CAST [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"
輝煌......我試圖鑄像你提到的,但我錯過了圓括號。謝謝 – nabeelfarid 2011-01-11 15:18:36