Hello,
I'm new to .NET C# programming. I'm following few books. It is said that instead of compiling it directly to binary code (Native code). High level code is converted into intermediate language (called MSIL aka CIL). But when I compile, I get an exe/Dll file.
- Is this MSIL/CIL containted in these exe/dll file?
- I want to see that intermediate language code. Just to get feel of its existence. How to view it?
- They are calling this exe/dll file an
assembly
. Are they using this "fancy word" just to differentiate these from the exe/dll files that contain binary code (native code)?