c# if else continue code example
Example 1: c# skip following code in loop
int bats = 10;
for (int i = 0; i <= 10; i++)
{
if (i < 9)
{
continue;
}
// this will be skipped until i is no longer less than 9
Console.WriteLine(i);
}
// this prints 9 and 10
Example 2: C# continue
class ContinueTest
{
static void Main()
{
for (int i = 1; i <= 10; i++)
{
if (i < 9)
{
continue;
}
Console.WriteLine(i);
}
// Keep the console open in debug mode.
Console.WriteLine("Press any key to exit.");
Console.ReadKey();
}
}
/*
Output:
9
10
*/