do while statements run once c# 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