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: 744fc6d9c119289194920be04ef1dc9b66772fef (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;
                } 
        }
}