Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Inconsistent accessibility: property type 'type' is less accessible than property 'property'
A public construct must return a publicly accessible object. For more information, see Access Modifiers.
The following sample generates CS0053:
// CS0053.cs
class MyClass //defaults to private accessibility
// try the following line instead
// public class MyClass
{
}
public class MyClass2
{
public MyClass myProperty // CS0053
{
get
{
return new MyClass();
}
set
{
}
}
}
public class MyClass3
{
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.