mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-07 15:28:32 +00:00
Merge pull request #414 from mvalipour/patch-1
[csharp/en] Fix while loop iterator incorrect count
This commit is contained in:
commit
524c53dd71
@ -233,7 +233,7 @@ on a new line! ""Wow!"", the masses cried";
|
||||
int fooWhile = 0;
|
||||
while (fooWhile < 100)
|
||||
{
|
||||
//Iterated 99 times, fooWhile 0->99
|
||||
//Iterated 100 times, fooWhile 0->99
|
||||
fooWhile++;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user