在Powershell中,我需要将输入传递给 System.Collections.Generic.IDictionary [string,system.object] 类型的方法。
有人可以帮我提供一个示例代码,说明如何声明IDictionary [string,system.object]并将值设置为它。
答案 0 :(得分:2)
类似的东西:
str 4 likeThis;
;
likeThis = 'W200';
答案 1 :(得分:0)
$dict = [System.Collections.Generic.Dictionary[string,object]]::new()
这只是创建字典的另一种方式。