continue
continue skips the rest of the current iteration and moves to the next.
for (int i = 1; i <= 5; i++){ if (i == 3) continue; Console.WriteLine(i);}Run the Application
Section titled “Run the Application”dotnet runResult
Section titled “Result”1245