영어로 읽기

다음을 통해 공유


컴파일러 오류 CS1551

인덱서에 매개 변수를 하나 이상 지정해야 합니다.

인수를 사용하지 않는 인덱서 가 선언되었습니다.

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

// CS1551.cs  
public class MyClass  
{  
   int intI;  
  
   int this[]   // CS1551  
   // try the following line instead  
   // int this[int i]  
   {  
      get  
      {  
         return intI;  
      }  
      set  
      {  
         intI = value;  
      }  
   }  
  
   public static void Main()  
   {  
   }  
}