.net - How do I look at the IL for my code? -
i have c# .net code , out of curiousity i'd @ il generated it. how can achieve this?
you use ildasm.exe
utility that's built .net framework. example in visual studio command prompt type following:
ildasm /output:foo.il foo.dll
and enjoy beauty of il contained in assembly.
Comments
Post a Comment