问题是我们不能获取仅位于具有泛型类型的基类中的字段(非泛型)的值。请参阅下面的代码片段。打电话
f.GetValue(a)
将抛出异常消息:不能对 Type.ContainsGenericParameters 为 true 的类型的字段执行后期绑定操作。
class Program
{
static void Main(string[] args)
{
Type abstractGenericType = typeof (ClassB<>);
FieldInfo[] fieldInfos =
abstractGenericType.GetFields(BindingFlags.Public | BindingFlags.Instance);
ClassA a = new ClassA("hello");
foreach(FieldInfo f in fieldInfos)
{
f.GetValue(a);// throws InvalidOperationhException
}
}
}
internal class ClassB<T>
{
public string str;
public ClassB(string s)
{
str = s;
}
}
internal class ClassA : ClassB<String>
{
public ClassA(string value) : base(value)
{}
}
我们的设计要求我们在获得任何实际对象的实例之前首先获得 FieldInfo。所以我们不能使用
Type typeA = abstractGenericType.MakeGenericType(typeof(string));
FieldInfo[] fieldInfos = typeA.GetFields();
谢谢