.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

Popular posts from this blog

authentication - Mongodb revoke acccess to connect test database -

ios - Realm over CoreData should I use NSFetchedResultController or a Dictionary? -

r - Update two sets of radiobuttons reactively - shiny -