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: 217b79374d26ffebbade82f82d813a5657e771a6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// cs0275.cs: `Error0275.Message.get': accessibility modifiers may not be used on accessors in an interface
// Line: 7

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

 }