Lezen in het Engels

Delen via


Compilerfout CS0152

Het label 'label' vindt al plaats in deze switch-instructie

Een label is herhaald in een switch instructie.

In het volgende voorbeeld wordt CS0152 gegenereerd:

// CS0152.cs  
namespace MyNamespace  
{  
   public class MyClass  
   {  
      public static void Main()  
      {  
         int i = 0;  
  
         switch (i)  
         {  
            case 1:  
               i++;  
               return;  
  
            case 1:   // CS0152, two case 1 statements  
               i++;  
               return;  
         }  
      }  
   }  
}