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
commit 524c53dd71

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