do syntax c sharp code example
Example: c# do while
do
{
//Code here (will run at least once)
} while (true); //Condition to test for here
do
{
//Code here (will run at least once)
} while (true); //Condition to test for here