1

使用此代码:

World w = new World();
var data = GetData<World>(w);

如果我得到w反射,这可以是World, Ambient,Domention等类型。

我怎么能得到GetData???

我只有实例对象:

var data = GetData<???>(w);
4

2 回答 2

2
var type = <The type where GetData method is defined>;

var genericType = typeof(w);

var methodInfo = type.GetMethod("GetData");

var genericMethodInfo = methodInfo.MakeGenericMethod(genericType);

//instance or null : if the class where GetData is defined is static, you can put null : else you need an instance of this class.
var data = genericMethodInfo.Invoke(<instance or null>, new[]{w});
于 2012-05-22T11:00:00.500 回答
2

你不需要写部分。如果未声明类型,则 C# 隐式决定泛型方法中参数的类型;只是去:

var data = GetData(w);

这是一个示例;

public interface IM
{

}

public class M : IM
{
}

public class N : IM
{

}

public class SomeGenericClass 
{
    public T GetData<T>(T instance) where T : IM
    {
        return instance;
    }
}

你可以这样称呼它;

IM a = new M();
SomeGenericClass s = new SomeGenericClass();
s.GetData(a);
于 2012-05-22T11:00:05.057 回答