Leggere in inglese

Condividi tramite


Errore del compilatore CS1551

Gli indicizzatori devono avere almeno un parametro

È stato dichiarato un oggetto indexer che non accetta argomenti.

L'esempio seguente genera l'errore CS1551:

C#
// 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()  
   {  
   }  
}