while do loop c# example
Example 1: c# do while loop
do {
statement(s);
} while( condition );
_______________EX.___________________
int i = 0;
do
{
Console.WriteLine(i);
i++;
}
while (i < 5);
============OUTPUT======================
0
1
2
3
4
Example 2: c# do while
do
{
//Code here (will run at least once)
} while (true); //Condition to test for here