Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
This refactoring applies to:
- C#
What: Convert an if statement to a switch statement or to the C# 8.0 switch expression.
When: You want to convert an if
statement to a switch
statement or a switch
expression and vice versa.
Why: If you are using an if
statement, this refactoring enables an easy transition to switch
statements or switch
expressions.
How-to
Place your cursor in the
if
keyword.Press Ctrl+. to trigger the Quick Actions and Refactorings menu.
Select from the following two options:
Select Convert to 'switch' statement.
Select Convert to 'switch' expression.