Example 2: powershell do while loop. > $array = @("item1", "item2", "item3") $counter = 0; do { $array[$counter] $counter += 1 } while($counter -lt ...
確定! 回上一頁