Lezen in het Engels

Delen via


Compilerfout CS0055

Inconsistente toegankelijkheid: parametertype '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 CS0055 gegenereerd:

C#
// CS0055.cs  
class MyClass //defaults to private accessibility  
// try the following line instead  
// public class MyClass  
{  
}  
  
public class MyClass2  
{  
   public int this[MyClass myClass]   // CS0055  
   {  
      get  
      {  
         return 0;  
      }  
   }  
}  
  
public class MyClass3  
{  
   public static void Main()  
   {  
   }  
}