.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 -

How to get the ip address of VM and use it to configure SSH connection dynamically in Ansible -

javascript - Get parameter of GET request -