2005-06-27 Geoff Norton <gnorton@customerdna.com>
[mono-project.git] / mcs / errors / cs0551.cs
blob744fc6d9c119289194920be04ef1dc9b66772fef
1 // cs0551.cs: Explicit interface implementation 'PropertyClass.PropertyInterface.Value' is missing accessor 'PropertyInterface.Value.set'
2 // Line: 9
4 interface PropertyInterface {
5 int Value { get; set; }
8 public class PropertyClass: PropertyInterface {
9 int PropertyInterface.Value {
10 get {
11 return 0;