【发布时间】:2013-04-01 17:22:59
【问题描述】:
我想创建一个在后台线程中运行另一个方法的方法。像这样的:
void Method1(string param)
{
// Some Code
}
void Method2(string param)
{
// Some Code
}
void RunInThread(AMethod m)
{
//Run the method in a background thread
}
【问题讨论】:
标签: c# linq expression func