Compiler Error CS0275
'accessor': accessibility modifiers may not be used on accessors in an interface
This error occurs when you use an access modifier on any one of the accessors of a property or indexer in an interface. To resolve, remove the access modifier.
The following example generates CS0275:
// CS0275.cs
public interface MyInterface
{
int Property
{
get;
internal set; // CS0275
}
}
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: