[Solved] If entire c# code is converted to one line and compiled would it decompile to 1 line?


c#.net compiles to MSIL. In MSIL both examples are represented exactly the same. Something along the lines of

load variable blahblah
load constant 123
compare for equality

MSIL doesn’t care about whitespace. Decompilers simply translate MSIL back to C#. Both examples would decompile the same, since they both generate the same MSIL

1

solved If entire c# code is converted to one line and compiled would it decompile to 1 line?