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