嗨,我如何使用带有线程的参数调用 System.Reflection.MethodInfo.Invoke()。
例如..
假设我有一个方法允许您传入一个表示类名的字符串并动态调用相应的类方法,现在我想用线程调用这个 Methodinfo.invoke,我不知道该怎么做,因为我正在调用调用带参数。给出的代码片段 meblow 。感谢您的帮助
Type classType = objAssembly.GetType("MyClassName");
object obj = Activator.CreateInstance(classType)
bject[] _objval = new object[3];
object[] parameters = new object[] { _objval };
MethodInfo mi = classType.GetMethod("MyMethod");
mi.Invoke(obj, parameters); // <---**How do i call this with threads.. ????**