Powershell - ForEach 循环

以下脚本演示了 ForEach 循环。

> $array = @("item1", "item2", "item3")
 
> foreach ($element in $array) { $element }
item1
item2
item3
 
> $array | foreach { $_ }
item1
item2
item3

❮ powershell_looping.html