Przeczytaj w języku angielskim

Udostępnij za pośrednictwem


Błąd kompilatora CS0620

Indeksatory nie mogą mieć typu void

Zwracany typ indeksatora nie może mieć wartości void. Indeksator musi zwrócić wartość.

Poniższy przykład generuje CS0620:

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

Zobacz też