英語で読む

次の方法で共有


コンパイラ エラー CS1551

インデクサーには最低パラメーターが 1 つ必要です。

引数を受け取らない インデクサー が宣言されました。

次の例では 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()  
   {  
   }  
}