假设我们有一个lambda表达式
var thread= new Thread(() =>
{
Foo1();
Foo2(() =>
{
Foo3();
DoSomething();
}
);
});
Run Code Online (Sandbox Code Playgroud)
问题是在DoSomething()评估时?在thread创作或打电话thread.Start()?