Lire en anglais

Partager via


Erreur du compilateur CS1551

Les indexeurs doivent posséder au moins un paramètre

Un indexeur qui ne prend aucun argument a été déclaré.

L’exemple suivant génère l’erreur 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()  
   {  
   }  
}