1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-20 05:21:26 +02:00

Merge pull request #414 from mvalipour/patch-1

[csharp/en] Fix while loop iterator incorrect count
This commit is contained in:
Adam Brenecki
2013-11-18 20:25:40 -08:00

View File

@@ -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++;
}