In ReSharper 8, when there were no interface members (properties) in the class, I would press Alt + Enter and select "Implement Missing Members", which will generate auto processes as follows:
public class MyClass : IHasId { public int Id { get; set; } }
However, the following is generated in ReSharper 9:
public class MyClass : IHasId { public int Id { get { throw new System.NotImplementedException(); } set { throw new System.NotImplementedException(); } } }
I installed R # to create automatic properties in the "Member Generation" section, still no effect.
Is this a mistake, or am I missing something?
source share