How .net differs from other programming languages
Posted on December 11th , 2009 by Admin
|
|
Other programming languages get compiled and run in their own specific run time environments and are not inter-operable.Where Dot Net supports programming languages run in a common runtime environment called CLR and get compiled into MSIL code which is interoperable with other programming languages supported by CLR.JIT is then used to convert MSIL to native code based on the operating system.CLR supports many utilities like Garbage Collection MemoryManagem |
| ent and so on that make it a more efficient run time environment. |
|
|