我似乎遇到了C#编译器的一些奇怪行为.
请考虑以下代码示例:
static void Main(string[] args) { Foo(false,8); } public static void Foo(bool execute,int x) { if (execute) { Task.Run(() => Console.WriteLine(x)); } }
运行此(在发布中)显示发生了一些意外的分配.检查IL表明闭包触发的堆分配出现在函数的最开头,而不是在条件内:
.method public hidebysig static void Foo( bool execute,int32 x ) cil managed { .maxstack 2 .locals init ( [0] class Test.Program/'<>c__displayClass1_0' 'CS$<>8__locals0' ) IL_0000: newobj instance void Test.Program/'<>c__displayClass1_0'::.ctor() IL_0005: stloc.0 // 'CS$<>8__locals0' IL_0006: ldloc.0 // 'CS$<>8__locals0' IL_0007: ldarg.1 // x IL_0008: stfld int32 Test.Program/'<>c__displayClass1_0'::x // [18 13 - 18 25] IL_000d: ldarg.0 // execute IL_000e: brfalse.s IL_0022 // [20 17 - 20 54] IL_0010: ldloc.0 // 'CS$<>8__locals0' IL_0011: ldftn instance void Test.Program/'<>c__displayClass1_0'::'<Foo>b__0'() IL_0017: newobj instance void [mscorlib]System.Action::.ctor(object,native int) IL_001c: call class [mscorlib]System.Threading.Tasks.Task [mscorlib]System.Threading.Tasks.Task::Run(class [mscorlib]System.Action) IL_0021: pop // [22 9 - 22 10] IL_0022: ret } // end of method Program::Foo
我在这里遗漏了什么,是否有人对这种奇怪的行为有解释? Roslyn是否可能生成为闭包分配的代码,无论我们是否实际执行它们?