Lezen in het Engels

Delen via


Compilerfout CS0056

Inconsistente toegankelijkheid: retourtype '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 CS0056 gegenereerd:

// CS0056.cs  
class MyClass  
// try the following line instead  
// public class MyClass  
{  
}  
  
public class A  
{  
   public static implicit operator MyClass(A a)   // CS0056  
   {  
      return new MyClass();  
   }  
  
   public static void Main()  
   {  
   }  
}