Compiler Error CS0056
Inconsistent accessibility: return type 'type' is less accessible than operator 'operator'
A public construct must return a publicly accessible object. For more information, see Access Modifiers.
The following sample generates CS0056:
C#
// 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()
{
}
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: