Powershell - While 循环
以下脚本演示了 while 循环。
> $array = @("item1", "item2", "item3") $counter = 0; while($counter -lt $array.length){ $array[$counter] $counter += 1 } item1 item2 item3
以下脚本演示了 while 循环。
> $array = @("item1", "item2", "item3") $counter = 0; while($counter -lt $array.length){ $array[$counter] $counter += 1 } item1 item2 item3
如果您发现内容有误或提出修改建议,请随时向我们发送 E-mail 邮件:
421660149@qq.com
您的建议已发送到 W3schools。