영어로 읽기

다음을 통해 공유


컴파일러 오류 CS0140

'label' 레이블이 중복되었습니다.

이름이 같은 레이블이 두 번 표시되었습니다. 자세한 내용은 goto를 참조하세요.

다음 샘플에서는 CS0140을 생성합니다.

C#
// CS0140.cs  
namespace MyNamespace  
{  
   public class MyClass  
   {  
      public static void Main()  
      {  
         label1: int i = 0;  
         label1: int j = 0;   // CS0140, comment this line to resolve  
         goto label1;  
      }  
   }  
}