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

cs0551.cs « errors « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5a50a06e7b59389add6a62f2dad3b9a1badf23de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// cs0551.cs: Explicit interface implementation `PropertyClass.PropertyInterface.Value' is missing accessor `PropertyInterface.Value.set'
// Line: 9

interface PropertyInterface {
        int Value { get; set; }
}

public class PropertyClass: PropertyInterface {
        int PropertyInterface.Value { 
                get { 
                        return 0;
                } 
        }
}