[corlib] Simplify RuntimeInformation by getting OS name from the runtime (#13164)
[mono-project.git] / mcs / errors / cs0275.cs
blobf0c7962ca3c1b96a571e182b7e8821de56799bd4
1 // CS0275: `Error0275.Message.get': accessibility modifiers may not be used on accessors in an interface
2 // Line: 7
4 public interface Error0275
6 string Message {
7 protected get;
8 set;