Ler em inglês

Partilhar via


Erro do compilador CS0152

O rótulo 'label' já ocorre nesta instrução switch

Um rótulo foi repetido em um switch comunicado.

O exemplo a seguir gera CS0152:

// 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;  
         }  
      }  
   }  
}