Answers for "c# do"

C#
0

c# do

int n = 0;
do
{
    Console.WriteLine(n);
    n++;
} while (n < 5);
Posted by: Guest on January-12-2021
0

c# do

int i = 0;

do
{
    Console.WriteLine("i = {0}", i);
    i++;

} while (i < 5);
Posted by: Guest on January-03-2021

C# Answers by Framework

Browse Popular Code Answers by Language