Compilation to MSIL

  • Thread starter Thread starter Bhuwan Bhaskar
  • Start date Start date
B

Bhuwan Bhaskar

Hi everyone !

Can anyone tell me how source code to converted into MSIL in dotnet
framework.

Thanks

Bhuwan
 
It is not the .NET fremework per se that converts it.

It is 'converted' or, more correctly, 'compiled' by the compiler for
whichever language you are using.
 
with a compiler!!

If you use one of the express version of VisualStudio, just press F5, your
code would be compiled.
The .EXE and .DLL are the MSIL version

OTherwise use the command line compilers, such as "csc" for C#
 
Bhuwan said:
Hi everyone !

Can anyone tell me how source code to converted into MSIL in dotnet
framework.

Thanks

Bhuwan

I want to know the steps followed by the compiler to convert Source
code to MSIL.

Bhuwan Bhaskar
 
I want to know the steps followed by the compiler to convert Source
code to MSIL.

Then maybe a good book on compilers can help you better than this newsgroup;
the topic is quite complex.


Massimo
 
Back
Top