编译器警告(等级 1)CS1522
空的 switch 块
编译器检测到 switch 块没有 case 或 default 语句。 switch
块必须具有一个或多个 case 或 default 语句。
下面的示例生成 CS1522:
// 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;
*/
}
}
}