In ReSharper 8, when a class was missing interface members (properties), I would Alt+Enter and select "Implement Missing Members", which would generate autoproperties like this:
public class MyClass : IHasId {
public int Id { get; set; }
}
However, in ReSharper 9, the following is generated:
public class MyClass : IHasId {
public int Id {
get { throw new System.NotImplementedException(); }
set { throw new System.NotImplementedException(); }
}
}
I have set R# to create automatic properties under "Member Generation", still no effect.
Is this a bug, or am I missing something?