Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
for ($q = 0; $q -lt 3; $q++) { Write-Host $q }
输出:
1 2
但我希望从 0 开始,因为$q = 0:
$q = 0
0 1 2
这是预期的行为还是我错过了一些非常明显的东西?
This is a bug in PowerGui version 3.5.0.2293. Updating to the latest version resolves the bug.