Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cs0686.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1717824798a3d3f8f3ed7e37ba2decea46ad9333 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// cs0686.cs: Accessor `C.Method.get' cannot implement interface member `I.get_Method()' for type `C'. Use an explicit interface implementation
// Line: 13

interface I
{
    int get_Method ();
}

class C: I
{
    public int Method
    {
	get { return -1; }
    }
}