Lezen in het Engels

Delen via


Compilerfout CS0057

Inconsistente toegankelijkheid: parametertype 'type' is minder toegankelijk dan operator 'operator'

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

In het volgende voorbeeld wordt CS0057 gegenereerd:

// CS0057.cs  
class MyClass //defaults to private accessibility  
// try the following line instead  
// public class MyClass  
{  
}  
  
public class MyClass2  
{  
   public static implicit operator MyClass2(MyClass iii)   // CS0057  
   {  
      return new MyClass2();  
   }  
  
   public static void Main()  
   {  
   }  
}