.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

php - Wordpress website dashboard page or post editor content is not showing but front end data is showing properly -

javascript - Get parameter of GET request -

javascript - Twitter Bootstrap - how to add some more margin between tooltip popup and element -