Leer en inglés

Compartir a través de


Advertencia del compilador (nivel 1) CS1522

Bloque switch vacío

El compilador ha detectado un bloque switch sin ninguna instrucción case o default . Un bloque switch debe tener una o varias instrucciones case o default .

El ejemplo siguiente genera la advertencia 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;  
         */  
      }  
   }  
}