开发者

List of objects in PowerShell?

If I have three objects of开发者_JAVA技巧 the same type, how can I add them in a list so I can do afterwards foreach ($entry in $list)?

Thanks.


Do you mean like this?

$a=1
$b=2
$c=3
$list = $a,$b,$c
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜