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.
List some of the new controls which are introduced in the ASP.NET AJAX Control Toolkit?
Write the basic difference between ASP and ASP.NET?
Briefly describe about ASP.NET?
Distinguish between Codebehind="MyCode.aspx.cs" and Src="MyCode.aspx.cs"?
Write down some of the Features of WPF in brief.
Explain the following methods DataAdapter.Update() and DataSetAcceptChanges()?
Describe the features of Chart control.
What is meant by the Object Pooling?
Briefly explain the term DynamicObject classes?
Differentiate between the default skin and the named skin?
18,76,764
1938841 Asked
3,689
Active Tutors
1419864
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!