- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How do we use nested switch statements in C#?
In C#, you can use one switch statement inside another switch statement. It is possible to have a switch as part of the statement sequence of an outer switch. Even if the case constants of the inner and outer switch contain common values, no conflicts will arise.
The following is the syntax.
switch(ch1) { case 'A': Console.WriteLine("This A is part of outer switch" ); switch(ch2) { case 'A': Console.WriteLine("This A is part of inner switch" ); break; case 'B': /* inner B case code */ } break; case 'B': /* outer B case code */ }
The following is an example of nested switch statements in C#.
switch (a) { case 100: Console.WriteLine("This is part of outer switch "); switch (b) { case 200: Console.WriteLine("This is part of inner switch "); break; } break; }
Let us see the complete example.
Example
using System; namespace Demo { class Program { static void Main(string[] args) { int a = 100; int b = 200; switch (a) { case 100: Console.WriteLine("This is part of outer switch "); switch (b) { case 200: Console.WriteLine("This is part of inner switch "); break; } break; } Console.WriteLine("Exact value of a is : {0}", a); Console.WriteLine("Exact value of b is : {0}", b); Console.ReadLine(); } } }
Output
This is part of outer switch This is part of inner switch Exact value of a is : 100 Exact value of b is : 200
- Related Articles
- How do we use nested if statements in C#?
- Explain nested switch case in C language
- How can we use nested transactions in MySQL?
- How can we use nested transactions allowed in MySQL?
- How can we use prepared statements in MySQL?
- How do we use multi-dimensional arrays in C#?
- How do we use a #line directive in C#?
- How do we write Multi-Line Statements in Python?
- Why do we use modifiers in C/C++?
- Can we use Switch statement with Strings in java?
- Switch statements in Dart Programming
- How to use strings in switch statement in C#
- How can we use prepared statements in a stored procedure?
- Else and Switch Statements with initializers in C++17
- How do we use runOnUiThread in Android?

Advertisements