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
}
}