Lire en anglais

Partager via


Avertissement du compilateur (niveau 1) CS1522

Bloc switch vide

Le compilateur a détecté un bloc switch sans aucune instruction case ou default . Or, un bloc switch doit avoir une ou plusieurs instructions case ou default .

L’exemple suivant génère l’erreur 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;  
         */  
      }  
   }  
}