Ler em inglês

Partilhar via


Erro do compilador CS0620

Os indexadores não podem ter o tipo void

O tipo de retorno de um indexador não pode ser void. Um indexador deve retornar um valor.

O exemplo a seguir gera CS0620:

// CS0620.cs  
class MyClass  
{  
   public static void Main()  
   {  
      MyClass test = new MyClass();  
      System.Console.WriteLine(test[2]);  
   }  
  
   void this [int intI]   // CS0620, return type cannot be void  
   {  
      get  
      {  
         // will need to return some value  
      }  
   }  
}  

Consulte também