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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0550.cs
blob
e344c80b0e568e9d152472c24f31304a39c59ff4
1
// CS0550: `PropertyClass.PropertyInterface.Value.set' is an accessor not found in interface member `PropertyInterface.Value'
2
// Line: 13
3
4
interface
PropertyInterface
{
5
int
Value { get; }
6
}
7
8
public class
PropertyClass
:
PropertyInterface
{
9
int
PropertyInterface
.
Value
{
10
get
{
11
return
0
;
12
}
13
set
{ }
14
}
15
}
16
17