vote up 0 vote down star

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?

flag

0% accept rate

4 Answers

vote up 2 vote down

You can use ildasm to view the MSIL output of the compiler.

link|flag
vote up 1 vote down

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

link|flag
vote up 5 vote down

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 Main method of this little app:

using System;

class Test    
{
    static void Main()
    {
        string other = "hello";
        Foo (x => new { Before = other + x, After = x + other });
    }

    static void Foo<T>(Func<int, T> func) {}
}

is decompiled to:

private static void Main()
{
    <>c__DisplayClass1 class2;
    class2 = new <>c__DisplayClass1();
    class2.other = "hello";
    Foo(new Func<int, <>f__AnonymousType0<string, string>>(class2.<Main>b__0));
    return;
}

and then you look in <>c__DisplayClass1 and <>f_AnonymousType0 for more details etc.

link|flag
vote up 0 vote down

Thx, really helpfull

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.