Changes

Jump to: navigation, search

C Sharp Looping with do and while Statements

4 bytes added, 14:54, 3 December 2008
no edit summary
== The continue Statement ==
The ''continue'' statement causes all remaining code statements in a loop to be skipped, and execution to be returned to the top of the loop. In the following example, the System.Console.WriteLine method is only called when the value of variable ''i'' is an even number (i.e divisible by 2 with no remainder):
<pre>

Navigation menu