本文介绍了如何通过反射获取接口基类型?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

限时删除!!

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

typeof(IFoo).BaseType == null

我如何获得 IBar?

How can I get IBar?

推荐答案

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

如果你特别想要 IBar,你可以这样做:

If you specifically want IBar, you can do:

Type type = typeof(IFoo).GetInterface("IBar");

这篇关于如何通过反射获取接口基类型?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

1403页,肝出来的..

09-07 13:02