repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
update readme (#21797)
[mono-project.git]
/
mcs
/
errors
/
cs0275.cs
blob
f0c7962ca3c1b96a571e182b7e8821de56799bd4
1
// CS0275: `Error0275.Message.get': accessibility modifiers may not be used on accessors in an interface
2
// Line: 7
3
4
public interface
Error0275
5
{
6
string
Message
{
7
protected get
;
8
set
;
9
}
10
11
}
12