Powershell - Do..While 循环

以下脚本演示了 do..while 循环。

> $array = @("item1", "item2", "item3")
$counter = 0;

do {
   $array[$counter]
   $counter += 1
} while($counter -lt $array.length)
 
item1
item2
item3 

❮ powershell_looping.html