show/hide this revision's text 2 addressing comments

The way I have to implement properties from an interface in c# 3.0 even though they are exactly the same as the interface when I'm not changing default behaviour of auto properties.

e.g.

public interface MyInterface
{
   int MyProperty { get; set;}
}

public class MyClass : MyInterface
{
   public int MyProperty { get; set; }
}

public class MyClass2 : MyInterface
{
   public int MyProperty { get; set; }
}

public class MyClass3 : MyInterface
{
   public int MyProperty { get; set; }
}

EDIT: To address some of the comments on this. I'm not changing any default behaviour of my getter. I understand the difference between class and interface thankyou, my point is that my marking it with the interface I shouldn't have to have this property inside every implementing class unless I want to change the default behaviour of the getter or setter. Imagine 500 classes implement this interface?

Also the lack of Mixins..

show/hide this revision's text 1

The way I have to implement properties from an interface in c# 3.0 even though they are exactly the same as the interface.

e.g.

public interface MyInterface
{
   int MyProperty { get; set;}
}

public class MyClass : MyInterface
{
   public int MyProperty { get; set; }
}

Also the lack of Mixins..