如何使用linq表达式将方法作为另一个方法的参数传递

时间:2013-04-01 17:23:00

标签: c# linq expression func

我想创建一个在后台线程中运行另一个方法的方法。像这样:

void Method1(string param)
{
    // Some Code
}

void Method2(string param)
{
    // Some Code
}

void RunInThread(AMethod m)
{
   //Run the method in a background thread
}

2 个答案:

答案 0 :(得分:8)

如果您的方法具有返回值,请使用Func委托,否则您可以使用Action委托。 e.g:

void Method1(string param)
{
    // Some Code
}

void Method2(string param)
{
   // Some Code
}

void RunInThread(Action<string> m)
{
   //Run the method in a background thread
}

然后你可以这样打电话给RunInThread

RunInThread(Method1);
RunInThread(Method2);

答案 1 :(得分:2)

我喜欢Task.Run当我只想在后台线程中运行一些代码时。它甚至看起来与你想要定义的签名几乎相同。还有很多其他重载。

Task.Run(()=>{ 
      //background method code 
   }, TResult);

MSDN documentation