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.
Write the difference between Arrays and Collection?
Briefly explain the use of a Panel control? And also state whether it displays during runtime?
Explain about the AppFabric component?
List the types of generations there are in a garbage collector?
Write down a short note on the brief history of WPF?
How to access information about a user's locale?
State the various advantages of cloud services?
Web form belongs to which class in a .NET Framework class hierarchy?
State how the changes made to the DataSet object are identified since it was last loaded?
Write few characteristics of ADO.NET Entity Framework 4.0.
18,76,764
1924667 Asked
3,689
Active Tutors
1441318
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!