// break statement exiting a for statement.
using System;
public class BreakTest
{
public static void Main( string[] args )
int count; // control variable also used after loop terminates
for ( count = 1; count <= 10; ++count ) // loop 10 times
if ( count == 5 ) // if count is 5,
continue; // terminate loop
Console.Write( "{0} ", count );
} // end for
Console.WriteLine( "\nMe de igual lo que escriba aki = {0} {1}",count, count);
Console.ReadLine();
} // end Main
} // end class BreakTest