What tool or method can I use to see what code something like an anonymous method or LINQ statement gets compiled to? Basicly seeing what happens behind the scene?
|
|
You can use ildasm to view the MSIL output of the compiler. |
||
|
|
|
|
There is one another way if you wanted to get inside and whats going on in .Net framework when we call the CLR methods. If you are using VS 2008, you can even debug the .net framework source code. For this you need to install Microsoft source reference server hotfixes.. And Shawn Burke got an excellent post (step by step guide) to configure this thing.. Just give a try.. Cheers Ramesh Vel |
||
|
|
|
|
Reflector is an excellent way to do this. Go to View / Options / Optimization and choose "None" so that it won't try to work out what the C# originally was. For example, the
is decompiled to:
and then you look in |
|||
|
|
|
|
Thx, really helpfull |
||
|
|
