如何使用反射调用接口中的方法

时间:2012-02-17 10:03:57

标签: c#-4.0 reflection

我有一个类,那个类'class1'正在实现一个接口interface1

我需要使用反射调用类中的方法。

我不能使用类名和接口名,因为这两个名称都会动态改变。

interface1 objClass = (interface1 )FacadeAdapterFactory.GetGeneralInstance("Class"+ version);

请参阅上面的代码段。类名和接口名称应根据其版本进行更改。我使用

为类创建了实例
Activator.CreateInstance(Type.GetType("Class1"))

但是我无法为界面

创建相同的内容

有没有办法实现上述背景。

1 个答案:

答案 0 :(得分:5)

您无法创建接口实例,只能实现接口的类。 有一些方法可以从界面中提取方法(信息)。

ISample element = new Sample();

Type iType1 = typeof(ISample);
Type iType2 = element.GetType().GetInterfaces()
    .Single(e => e.Name == "ISample");
Type iType3 = Assembly.GetExecutingAssembly().GetTypes()
    .Single(e => e.Name == "ISample" && e.IsInterface == true);

MethodInfo method1 = iType1.GetMethod("SampleMethod");
MethodInfo method2 = iType2.GetMethod("SampleMethod");
MethodInfo method3 = iType3.GetMethod("SampleMethod");

method1.Invoke(element, null);
method2.Invoke(element, null);
method3.Invoke(element, null);

我希望这已经足够了。