From 25755ad7caafbda6c9964154415603198439b553 Mon Sep 17 00:00:00 2001 From: CyberCore1010 <39372030+CyberCore1010@users.noreply.github.com> Date: Sat, 17 Nov 2018 05:17:20 +0000 Subject: [PATCH] Added a line to Example 1 (#23115) Added a line to describe why the output of examples 1-3 only print to the number 4 --- guide/english/csharp/for-loop/index.md | 1 + 1 file changed, 1 insertion(+) diff --git a/guide/english/csharp/for-loop/index.md b/guide/english/csharp/for-loop/index.md index 2399c5abff..9c50c93661 100644 --- a/guide/english/csharp/for-loop/index.md +++ b/guide/english/csharp/for-loop/index.md @@ -34,6 +34,7 @@ for (int i = 0; i < 5; i++) > Number 3 > Number 4 ``` +- Only counts to 4 due to the fact that the initial number is 0 meaning that 5 numbers including 0 would reach 4. ### Example 2 ```