GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Interview Questions  >  Microsoft  >  ASP.NET 2.0
Go To First  |  Previous Question  |  Next Question 
 ASP.NET 2.0  |  Question 59 of 160    Print  
Whats MSIL, and why should my developers need an appreciation of it if at all?

  
Total Answers and Comments: 3 Last Update: February 07, 2006   
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
September 12, 2005 14:46:49   #1  
Swapna        

RE:
MSIL is the Microsoft Intermediate Language. All .NET compatible languages will get converted to MSIL. MSIL also allows the .NET Framework to JIT compile the assembly on the installed computer.
 
Is this answer useful? Yes | No
September 12, 2005 14:55:21   #2  
Swapna        

RE:
MSIL is the Microsoft Intermediate Language. All .NET compatible languages will get converted to MSIL. MSIL also allows the .NET Framework to JIT compile the assembly on the installed computer.
 
Is this answer useful? Yes | No
February 07, 2006 08:43:59   #3  
Praveen Kumar        

RE: Whats MSIL, and why should my developers need an a...
MSIL supports OO programming so we can have a class which has public and private methods. The entry point of the program needs to be specified. In fact it doesn't really matter whether the method is called Mam or Dad. The only thing that matters here is that .entrypoint is specified inside the method. MSIL programs are compiled with ilasm compiler. Since we are writing a managed assembly code we have to make sure that no variables are allocated in memory when the program goes out of scope. Here is a more complicated program that once again does not do anything but has some dataThe sample MSIL program.method static void main(){ .entrypoint .maxstack 1 ldstr Hello world! call void [mscorlib]System.Console::WriteLine(string) ret}
 
Is this answer useful? Yes | No


 
Go To Top


 Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape