-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Labels
enhancementNew feature or requestNew feature or request
Description
ImplementInterface only detects types that directly implements the interface, but won't detect if interface is declared on parent type.
public interface IHandler;
public class ParentHandler : IHandler;
public class ChildHandler : ParentHandler <= Won't be detected by Types.That().ImplementInterface(typeof(IHandler))
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request