영어로 읽기

다음을 통해 공유


컴파일러 경고(수준 1) CS1522

빈 스위치 블록입니다.

컴파일러가 case 또는 default 문 없이 switch 블록을 검색했습니다. switch 블록에는 하나 이상의 case 또는 default 문이 있어야 합니다.

다음 샘플에서는 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;  
         */  
      }  
   }  
}