vote up 0 vote down star

Hi All, I need to convert the IL to c# code. I have an assembly and I am reading this assembly. I get MethodBody from MethodInfo and the methodbody has a method GetILAsByteArraY() which returns a byte array now I want to comvert this IL to C# code. Please help me out in solving this.

flag

Unanimous decision! – BC Mar 15 at 16:13
What do you need this for? If you describe your situation in somewhat more detail, maybe we can suggest more than .NET Reflector. – Anton Tykhyy Mar 15 at 16:14
@Anton We'd probably be better off not understanding this hackery. – BC Mar 15 at 16:15
Did anyone suggest Reflector yet? – Michael Burr Mar 15 at 16:20
7 times already, Michael. – Anton Tykhyy Mar 15 at 16:22
show 2 more comments

8 Answers

vote up 9 vote down check

Don't reinvent the wheel; use Lutz Roeder's .NET Reflector.

link|flag
Its not Lutz' anymore. – Will Mar 15 at 17:14
I think it is clearly obvious that he is trying to create another wheel like that of .NET Reflector and he wants to know how it's made. Lutz shouldn't necessarily be the only man in the world who knows how to make it. – Hasan Khan Mar 15 at 18:39
vote up 1 vote down

Let's see if I manage to get it in first: .NET Reflector! This really should be a FAQ...

link|flag
vote up 1 vote down

Can't you do this with Reflector?

You can load an assembly and view it as VB.net/C#/IL...

link|flag
vote up 0 vote down

You should just use .NET Reflector if you have the assembly. Also try the file gen addon.

link|flag
vote up 0 vote down

There is no tool in the BCL that will do this; however, there is a great tool called Reflector, which you can write your own add-ins for. So you could probally use this to get the data you want.

link|flag
vote up 0 vote down

Reflector does this. Perhaps you could use Reflector against Reflector and learn how it handles the problem.

You might also say why you want to do this - there may be a better solution to your overall problem.

link|flag
Reflectors internals were obfuscated using non-printables (at least lutz did that). While yes you could reflect on itself a better question would is it really worth that... – Josh Mar 15 at 16:14
Yes, that's what I suspected. It's why I asked him why he wants to do it. – John Saunders Mar 15 at 16:53
vote up 0 vote down

Either this needs to be a FAQ (get Reflector), or there is actually more to the question.

link|flag
vote up 0 vote down

Let me be the first to suggest you grab a copy of Red Gate's Reflector.

link|flag

Your Answer

Get an OpenID
or

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