In C# Expression Trees,
.Block(
ConsoleApplication2.A $var1,
ConsoleApplication2.B $var2) {
.Block() {
.Block() {
$var1 = .New ConsoleApplication2.A();
$var1
};
.Block() {
$var2 = .New ConsoleApplication2.B($var1);
$var2
}
}
}
Does the above expression generate poorer quality of code vs.
.Block(
ConsoleApplication2.A $var1,
ConsoleApplication2.B $var2) {
$var1 = .New ConsoleApplication2.A();
$var2 = .New ConsoleApplication2.B($var1);
}
They are functionally equivalent, but the first one is what I often end up getting by doing visitor pattern based modifications.
Is there a way to "Reduce" or "Collapse" all Blocks that are placeholders (i.e. no variables??) into the parent blocks? Maybe using yet another visitor? I couldn't figure it out.
At the IL level, there is no concept of blocks, so I would expect both expressions to results in the same (or very similar) IL code.
To verify this, you can use Reflection.Emit and
CompileToMethod()
to create an assembly that has both options in separate methods. You can then look at the IL of both methods using ildasm to verify that the code is indeed the same:The code to create the assembly could look like this: