Powershell - 关于清单

时间:2016-11-21 15:23:17

标签: powershell

请您在powershell中为我提供一种从keyvaluepair类型声明集合List的方法,以及从此类型添加元素的方法。使用Hashtable是不可接受的,有必要使用这种类型的List。 提前谢谢。

1 个答案:

答案 0 :(得分:4)

我不确定是什么阻止你继续创建这样的列表。

$list = New-Object 'System.Collections.Generic.List[System.Collections.Generic.KeyValuePair[KeyType,ValueType]]'