Lezen in het Engels

Delen via


Compilerfout CS0054

Inconsistente toegankelijkheid: indexeerfunctie retourtype 'type' is minder toegankelijk dan indexeerfunctie 'indexeerfunctie'

Een openbare constructie moet een openbaar toegankelijk object retourneren. Zie Toegangsmodifiers voor meer informatie.

In het volgende voorbeeld wordt CS0054 gegenereerd:

// CS0054.cs  
class MyClass  
// try the following line instead  
// public class MyClass  
{  
}  
  
public class MyClass3  
{  
   public MyClass this[int i]   // CS0054  
   {  
      get  
      {  
         return new MyClass();  
      }  
   }  
}  
  
public class MyClass2  
{  
   public static void Main()  
   {  
   }  
}