c# exit for loop from if code example Example: c# exit for Use "break;" for (int i = 1; i <= 100; i++) { if (i == 5) { break; } }