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# case Example (Switch Case)

Use the case keyword. Case is part of switch statements and will match values.
Case. This keyword is part of switch. We use this keyword to match constant values in switches. Case specifies a constant to be matched in the switch selection statement.Switch
Usage. Cases can be stacked and combined. We can target a case with a goto statement. And "default" is a special kind of case—it is matched when nothing else does.
First example. Cases specify constants that match the selection in a switch statement. The blocks following a specific case statement are only executed when the case constants are matched.

Example: This code demonstrates the case keyword used in different ways. A string switch statement is shown.

String Switch

Cases: The first 3 cases are stacked on top of each other. This syntax can match multiple cases to a single executable code block.

Note: At the end of each case statement block, you must have a break, return or goto jump statement for the program to compile.

BreakReturnGoto

Default: The default case does not use the "case" keyword. It is the case that is matched when no other cases do.

C# program that uses case statements in switch using System; class Program { static string TestCase(string value) { const string _special = "constant"; // Begin the switch. switch (value) { case "100": case "1000": case "10000": { // You can use the parentheses in a case body. return "Multiple of ten"; } case "500": case "5000": case "50000": // You can omit the parentheses and stack the cases. return "Multiple of fifty"; case _special: // You can use a constant identifier in the case. return "*"; default: // You can use the default case. return "Invalid"; } } static void Main() { // Test the method. Console.WriteLine(TestCase("100")); Console.WriteLine(TestCase("1000")); Console.WriteLine(TestCase("5000")); Console.WriteLine(TestCase("constant")); Console.WriteLine(TestCase(null)); } } Output Multiple of ten Multiple of ten Multiple of fifty * Invalid
Constant expected. It is important to know what values are constant before using them in a switch. For example, string.Empty is not constant—it is a field.

So: We cannot use string.Empty in a case statement. Other fields in a class also cannot be cases.

Error: The C# compiler will report the error to us before the program is ever run. This is helpful.

C# program that shows constant error class Program { static void Main(string[] args) { switch (args[0]) { case string.Empty: break; } } } Output Error CS0150 A constant value is expected
Syntax tip. It is possible to omit the surrounding parenthesis in a case block. This option is useful for large or deeply nested switches, or switch statements that have many short blocks.

And: There is no difference in the compiled program if you omit the parentheses.

Also: The switch statement also shows how to use a constant field or local constant in the case statements.

Compiler: The C# compiler will internally treat this constant the same way as explicitly specified constants in other cases.

const
Default case. The keyword "default" matches all values that are not matched by the specified case statements. It is like "else" in an if-else chain.If
Fall-through. The C# language does not allow cases to fall through to the next cases. This means you cannot execute separate code blocks in multiple case statements.

But: You can still stack together multiple cases. This limitation was added to the language to reduce programming mistakes.

A summary. Case is used in switch statements. We also find this keyword in certain goto statements. The case statement is specified with a constant, which may be defined elsewhere.
© 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