October 2008
Beginner to intermediate
680 pages
16h 48m
English
Research Microsoft's C# Language Tour web site at http://msdn.microsoft.com/en-us/library/67ef8sbd.aspx.
Cite any advantages or features of C# not mentioned in this chapter.
Explore the Microsoft .NET Framework home page at http://msdn.microsoft.com/en-us/library/w0x726c2.aspx.
Remember that C# can make use of all the libraries and other capabilities provided by the .NET Framework.
Using a for loop and a continue statement, create a code snippet that will write the even numbers from 1 to 10 to the console.
Using what you know about defining blocks of code and proper indentation technique, make the following code snippet more readable:
int count = 0; for (int j = 0; j < 2; j++) { count = j; for (int k = 0; k < 3; k++) count++; Console.WriteLine("count ...Read now
Unlock full access