具有PropertyInfo.PropertyType类型的通用类实例

时间:2013-03-15 12:50:42

标签: c# generics reflection propertyinfo

我有以下课程:

public class SampleClassToTest<T>
{
    public static Fake<T> SomeMethod(string parameter)
    {
        // some code
    }

    public static Fake<T> SomeMethod(string parameter, int anotherParameter)
    {
        //some another code
    }
}

public class Fake<T>
{
    // some code
}

我想以这种方式使用它们:

SampleClassToTest<MyClass>.SomeMethod("some parameter");

我遇到的问题如下:“MyClass”的类型我只能使用Reflection从PropertyInfo实例获取,所以我有

Type propertyType = propertyInfo.PropertyType;

我该怎么做?有什么想法吗?

UPD。我正在尝试将Type传递给泛型方法。是的,这就是我想要的。

2 个答案:

答案 0 :(得分:3)

您需要这样做:

typeof(SampleClassToTest<>).MakeGenericType(propertyType)
       .GetMethod("SomeMethod", new Type[] {typeof(string)})
       .Invoke(null, new object[] {"some parameter"});

难看。

如果可以得到帮助,我建议提供一个接受Type实例的非通用API;这里的好处是通用API可以使用typeof(T)轻松调用非泛型API。

答案 1 :(得分:2)

看起来你想要:

Type propertyType;
Type classType = typeof(SampleClassToTest<>).MakeGenericType(propertyType);

MethodInfo method = classType.GetMethod("SomeMethod", BindingFlags.Static | BindingFlags.Public, null, new[] { typeof(string) }, null);
object fake = method.Invoke(null, new object[] { "some parameter" });