Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0275.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b6da9d07a71fc039787d5ad260969b1700e84508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0275.cs(9) error CS0275: Accessibility modifiers can not be used on accessors in interfaces
// Line: 7

 public interface Error0275
 {
	 string Message {
		 protected get;
		 set;
	 }

 }