Powershell-do-while-loop

提供:Dev Guides
移動先:案内検索

Powershell-Do..While Loop

次のスクリプトは、doを示しています。 whileループ

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

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

item1
item2
item3