TheDeveloperBlog.com

Home | Contact Us

C-Sharp | Java | Python | Swift | GO | WPF | Ruby | Scala | F# | JavaScript | SQL | PHP | Angular | HTML

<< Back to C-SHARP

C# break Statement

Stop loops with the break keyword. Use break to end a block in a switch statement.
Break. This keyword alters control flow. Its meaning is clear in most programs—it means "stop." In loops it stops the loop. And in a switch it exits the switch.
Statement notes. Break statements are used in certain parts of a program. We use them in loops (like for and while) and switch statements. They cannot be used in some places.ForWhileSwitch
An example. Here we see the break keyword in the for-loop and foreach-loop constructs. A message is printed and then the loop is stopped with break.

Part 1: We create an array of several integer elements. These are looped over in the 2 loops.

Part 2: We use a for-loop over the indexes in the array, ending at the Length. We test each element for 15, and break if true.

Part 3: We use a foreach-loop, which also supports the break keyword. This loop does the same thing as the for-loop.

Foreach

Tip: When a break is encountered in the IL, control is immediately transferred to the statement following the enclosing block.

C# program that uses break in loops using System; class Program { static void Main() { // Part 1: create an array. int[] array = { 5, 10, 15, 20, 25 }; // Part 2: use for-loop and break on value 15. for (int i = 0; i < array.Length; i++) { Console.WriteLine("FOR: {0}", array[i]); if (array[i] == 15) { Console.WriteLine("Value found"); break; } } // Part 3: use foreach-loop and break on value 15. foreach (int value in array) { Console.WriteLine("FOREACH: {0}", value); if (value == 15) { Console.WriteLine("Value found"); break; } } } } Output FOR: 5 FOR: 10 FOR: 15 Value found FOREACH: 5 FOREACH: 10 FOREACH: 15 Value found
Switch. We can use the break keyword in the switch statement. When break is encountered in a switch statement, the switch statement is exited. But the enclosing block is not.

Example: The for-loop continues through all five iterations. Break does not break the loop.

Info: The switch statement can confuse loop code. We might do better to put the switch statement itself in a method with a result value.

Tip: We can employ object-level polymorphism. This calls different methods based on a virtual dispatch table.

Abstract
C# program that uses loop and switch with break using System; class Program { static void Main() { for (int i = 0; i < 5; i++) // Loop through five numbers. { switch (i) // Use loop index as switch expression. { case 0: case 1: case 2: { Console.WriteLine("First three"); break; } case 3: case 4: { Console.WriteLine("Last two"); break; } } } } } Output First three First three First three Last two Last two
No enclosing loop. Sometimes a programmer is unhappy. The "break" keyword, when used outside of a loop, will break the program. It will not compile—an enclosing loop is required here.
C# program that causes break error class Program { static void Main() { break; } } Output Error CS0139 No enclosing loop out of which to break or continue
Yield. The C# language has a yield break statement. Here the compiler generates code that terminates the method from being called again after it returns.

Note: In this sense, the yield break statement is more final than the yield return statement.

Tip: Yield is implemented in the C# compiler—not at the level of the MSIL instructions.

Yield
Continue. This stops the current iteration and progresses to the next iteration of the loop. After it is encountered, the loop will execute no more remaining statements in that iteration.Continue

Warning: The continue statement complicates certain loop structures. In loops (as in methods) having one entry and one exit has advantages.

Tip: If continue and break are confusing, consider extracting logic into methods and using returns instead.

Return
Research. There are many details of how break and loops are compiled. Expert .NET IL Assembler (by Serge Lidin) describes the abstract binary format used by the .NET Framework.

Info: The book contains thorough descriptions of how the "br" instructions are used in the intermediate language.

IL
Research, disasters. The switch statement's traditional usage of the break keyword can cause bugs. Mixing the switch statement in an enclosing loop has caused real-world disasters.

Info: In the book Code Complete, we find a "break" bug made New York City phone systems unusable for 9 hours in January 1990.

A summary. Break stops loop iteration. We tested this keyword on loops. We also looked at the switch statement's somewhat confusing usage of the break keyword.
© TheDeveloperBlog.com
The Dev Codes

Related Links:


Related Links

Adjectives Ado Ai Android Angular Antonyms Apache Articles Asp Autocad Automata Aws Azure Basic Binary Bitcoin Blockchain C Cassandra Change Coa Computer Control Cpp Create Creating C-Sharp Cyber Daa Data Dbms Deletion Devops Difference Discrete Es6 Ethical Examples Features Firebase Flutter Fs Git Go Hbase History Hive Hiveql How Html Idioms Insertion Installing Ios Java Joomla Js Kafka Kali Laravel Logical Machine Matlab Matrix Mongodb Mysql One Opencv Oracle Ordering Os Pandas Php Pig Pl Postgresql Powershell Prepositions Program Python React Ruby Scala Selecting Selenium Sentence Seo Sharepoint Software Spellings Spotting Spring Sql Sqlite Sqoop Svn Swift Synonyms Talend Testng Types Uml Unity Vbnet Verbal Webdriver What Wpf