1
Reply

for loop statement

Deane Karsten

Deane Karsten

Apr 22 2008 4:58 AM
2.5k
Hi im new to C# as you might have guessed..
But I'm having trouble understanding the loops statement.

 for (int i = 0; i <= 10; i++)
            {
                {
                    //Console.WriteLine(i.ToString());
                }              
            }

I don't understand what is going on here, i just know the outcome. Could someone please help me.

Answers (1)