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.
'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.
Example
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.