c# skip following code in loop April 14, 2023 by wordlinkanswers Home - Q & A - c# skip following code in loop c# skip following code in loop Comment 3 int bats = 10;</p> <p>for (int i = 0; i <= 10; i++)<br /> {<br /> if (i < 9)<br /> {<br /> continue;<br /> }<br /> // this will be skipped until i is no longer less than 9<br /> Console.WriteLine(i);<br /> }<br /> // this prints 9 and 10 Popularity 9/10 Helpfulness 5/10 Language csharp Source: www.codecademy.com Tags: c# skip Share Link to this answer Share Contributed on Mar 04 2020 Plain Penguin 0 Answers Avg Quality 2/10 wordlinkanswers