Check out example codes for "c# do while". It will help you in understanding the concepts better.
Code Example 1
int i = 0;
do
{
Console.WriteLine("Value of i: {0}", i);
i++;
} while (i < 10);
Code Example 2
do
{
//Code here (will run at least once)
} while (true); //Condition to test for here
Learn ReactJs, React Native from akashmittal.com