Compiler Warning (level 1) CS1522
Empty switch block
The compiler detected a switch block with no case or default statement. A switch
block must have one or more case or default statements.
The following sample generates CS1522:
C#
// CS1522.cs
// compile with: /W:1
using System;
class x
{
public static void Main()
{
int i = 6;
switch(i) // CS1522
{
// add something to the switch block, for example:
/*
case (5):
Console.WriteLine("5");
return;
default:
Console.WriteLine("not 5");
return;
*/
}
}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: