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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0686.cs
blob
7bf36692c7738bf323488bd4654481a9abf710c5
1
// CS0686: Accessor `C.Method.get' cannot implement interface member `I.get_Method()' for type `C'. Use an explicit interface implementation
2
// Line: 13
3
4
interface
I
5
{
6
int
get_Method
();
7
}
8
9
class
C
:
I
10
{
11
public int
Method
12
{
13
get
{ return -1; }
14
}
15
}