Thursday, April 15, 2010

.NET QUESTIONS

4 comments:

  1. What is an IL?

    IL=Intermediate Language. Also known as MSIL=Microsoft intermediate Language or CIL=Common Intermediate Language) All.net source code (of any language) is compiled to IL during development. The IL is then converted to machine code at the point where the software is installed, or(more commonly) at run time by Just-In-Time(JIT)compiler.

    ReplyDelete
  2. The CLR basically to load run on .net applications.

    ReplyDelete