public interface IBar {}
public interface IFoo : IBar {}

typeof(IFoo).BaseType == null

我如何获得IBar?

最佳答案

Type[] types = typeof(IFoo).GetInterfaces();

编辑:如果您特别想要IBar,则可以执行以下操作:
Type type = typeof(IFoo).GetInterface("IBar");

10-08 05:06