Whats MSIL, and why should my developers need an appreciation of it if at all?

Showing Answers 1 - 8 of 8 Answers

Muralikannan

  • Mar 15th, 2005
 

MSIL is used to conver source code to Microsoft Intermediate Language.

  Was this answer useful?  Yes

Shankara raman S

  • Mar 23rd, 2005
 

Actually MSIL means Microsoft Intermediate Language.Its the means .NET achieves language interoperability.Because when any .NET aware module is compiled it yields a MSIL assembly which can be undetstood only by the CLR n JIT and it is similar to that of Class files of JAVA

  Was this answer useful?  Yes

Sachin Ambekar

  • Mar 25th, 2005
 

MSIL(Microsoft Intermidiate Language) is a the powerful feature used by .NET to execute the users code.As .NET support multiple language usage for code development and cross-language usability, all the code of a solution is eventually converted in to MSIL(a syntax code which is understood by CLR.) and CLR then executes the code accordingly. Even developers need not worry about syntax of MSIL.

  Was this answer useful?  Yes

sujith M. Nair

  • May 12th, 2005
 

Is it same as java bytecode?

  Was this answer useful?  Yes

Vijay Bhatt

  • Oct 21st, 2005
 

MSIL is a partial executable code which is platform independent. But it requires .net runtime and execution will be interpreted execution.  

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions