阻止$ ArrayList.Add输出新索引到主机?

时间:2013-10-19 16:57:38

标签: arrays powershell arraylist indexing output

在PowerShell中,如何阻止[System.Collections.ArrayList]$ArrayList=@() ; $ArrayList.Add("New thing")将新索引的值发送给主机?

谢谢!

1 个答案:

答案 0 :(得分:5)

您可以将结果转换为[void],或重定向到null

[void]$ArrayList.Add("New thing")
$ArrayList.Add("New thing") > $nul
$ArrayList.Add("New thing") | out-null