While Loop in c#
2051
01-Dec-2015
I want to use while loop in c# please help me
Anonymous User
01-Dec-2015The while loop is one of the important looping construct, that is being widely used in C sharp programming language
it three things are important.
1. Initialization
2. Increment/Decrement
3. Termination
These are the important characteristics of any loop. Initialization represents the starting position from there your loop will be started. In the below example int i=0 refers to initialization of while loop. i++ refers to increment/decrement and finally while(i<10) refers to the termination of while loop.