Given:
public interface IA { void TestMethod(); } public interface IB : IA { }
Why:
typeof(IB).GetMethods().Count() ==
Consider IA to be an interface of IB, not its base.