是否可以在ThreadPool.QueueUserWorkItem()
string myFunction="Go";
ThreadPool.QueueUserWorkItem(MyFunction);
public void Go(object obj)
{
//Do Something
}
答案 0 :(得分:3)
你需要使用反射。
例如:
WaitCallback callback = (WaitCallback) Delegate.CreateDelegate(
typeof(WaitCallback), this, myFunction);
ThreadPool.QueueUserWorkItem(callback);
要在其他类中使用方法,请将this
更改为目标实例。如果要调用静态方法,请使用CreateDelegate
的重载,它将Type
作为第二个参数而不是对象。
答案 1 :(得分:1)
你必须使用反射来获得方法:
var method = this.GetType().GetMethod(myFunction, new Type[] { typeof(object) });
var d = (WaitCallback)Delegate.CreateDelegate(typeof(WaitCallback), this, method);
ThreadPool.QueueUserWorkItem(d);