[Required] Attribute on interface does not work as expected

Issue #11 resolved
Joris Huijbregts created an issue

http://i.imgur.com/DIi8RZx.png

I created an interface and made it required (requires implementation), however, the required error shows, even if I set an implementation.

[Required]
public ISomeType someType;

public interface ISomeType { void ABC(); }

public class SomeType : ISomeType { public void ABC() { throw new NotImplementedException(); } }

Comments (1)

  1. Log in to comment