# Topic H – Case Structures
# Overview
This topic introduces the C# switch statement which is used to code case structures. The following new keywords are introduced.
- switch
- case
- default
- break
# LOGs
# General Programming Concepts and Terms
- Describe the syntax of the switch statement
- Discuss the limitations of the switch statement in C# and the available alternatives for the times that we can't use a switch statement
Examples →