English 中文(简体)
Pass Make 电传类型
原标题:Pass MakeGenericMethod a Dynamic Type

我试图调用通用方法, 并且需要动态地传递它。 但得到一个编译错误, CS0246: 找不到类型或名称空间名称 。 您是否缺少使用指令或组装参考 。 请告诉我我忽略了什么, 谢谢 。

...在主...... 在主...

Type t = DiscoverType(field);   // returns Type given FieldInfo via Type.GetType(string)

MethodInfo method = typeof(testClass).GetMethod("MyGenericMethod", BindingFlags.NonPublic | BindingFlags.Instance);
MethodInfo generic = method.MakeGenericMethod(typeof(t));
object[] args = {field};
generic.Invoke(this, args);

通用方法...

private void MyGenericMethod<T>(FieldInfo field)
{
    field.SetValue(obj, new List<T>(objList));
}
问题回答

很难知道您到底要做什么, 但是您可以修正您的编译器错误 :

MethodInfo generic = method.MakeGenericMethod(t);

您使用 < code> type of 运算符从类型名转到 < code> System. Type 实例。 在您的情况中, 您已经拥有了 < code> System. Type 实例, 您需要的 < code > type of 此处没有用处 。





相关问题
c# reflection with dynamic class

I need to execute a method "FindAll" in my page. This method returns a list of the object. This is my method that I execute "FindAll". FindAll requires an int and returns an List of these class. ...

Performance overhead of using attributes in .NET

1.. Is there any performance overhead caused by the usage of attributes? Think for a class like: public class MyClass { int Count {get;set;} } where it has 10 attibutes (...

WPF GridView, Display GetType().Name in DisplayMemberBinding

I want include the Type name of each object in my collection from my GridView. I have a collection which has four different types in it that all derive from a base class. Call them, Foo, Bar, Fizz, ...

Testing private method of an abstract class using Reflection

How can I test a private method of an abstract class using reflection (using C#)? I am specifically interested in adapting the code found in this thread. I am aware of the discussion around the ...

Adding Items to ListBox, RadioList, Combobox using reflection

I m trying to add items to a listbox,combobox, radiolist using reflection. The code I have at the moment is as follows: public static Control ConfigureControl(Control control, ControlConfig ctrlconf)...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

热门标签