Symptoms
- I am getting the error below appearing in my console:
error CS0163: Control cannot fall through from one case label to another
Cause
CS0163 is caused when a switch with more than one case is not explicitly terminated within each section. This is required as a switch does not allow multiple cases to be used in the same iteration of the switch.
Resolution
CS0163 is fixed by adding either of the following statements to each case.
More Information
https://msdn.microsoft.com/en-us/library/843c4c28.aspx