repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
2009-11-12 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0686.cs
blob
1717824798a3d3f8f3ed7e37ba2decea46ad9333
1
// cs0686.cs: 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
}