Syntax of while loop in C sharp
Write the syntax of the while loop in the C# program.
Expert
Syntax of the while loop in the C# is as follows:
while(condition) //condition
{
//statements
}
An example of the while loop in C# is:
int i = 0;
while(i < 5)
Console.WriteLine("{0} ", i);
i++;
Ooutput of the above code is: 0 1 2 3 4.
How a color is picked from the ColorDialog box?
List the basic characteristics of the Cloud computing?
Write the name of the method which is used to create a click event of Control class for Button control in C#?
Explain the purpose of the JIT compiler in .NET Framework?
Write down in brief the use of console application?
Specify the new features involved in the Microsoft AJAX library?
Which type of code, a client-side or a server-side, is found in the code-behind file of the Web page?
Write down the three main points in WCF?
Illustrate the terms Response dot Redirect as well as Server dot Transfer?
Distinguish among a Thread and a Process?
18,76,764
1924954 Asked
3,689
Active Tutors
1445858
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!