What is intermediate language in .NET ?
Answer Posted / santosh
.net supports CLS i. e. Common language type. its a
microsofts feature to bring all languages near one roof.
When You compile .net code it dosen't converted into binary
language, it converted into IL (Intermidate Language) also
known as MSIL. And from IL to binary language converted at
run time, CLR manages this process. At the runtime also it
not converts whole project at time to binary, only converts
that part which is going to execute, this the performance
of project increases. This IL can use any lanuage which is
member of that .net studio. The assemblies (ExE, DLL) are
also in IL form. So u can use any EXE or DLL created in
vb.net in c#.net also.
Is This Answer Correct ? | 71 Yes | 8 No |
Post New Answer View All Answers
What are the difference between structure and class?
Can you please explain the difference between dispose and finalize()?
What are the features present in vb 2005?
How can we store decimal data in .net?
Tell me how many .net languages can a single .net dll contain?
Explain about Visual basic.NET culture?
Explain about the feature anonymous type?
what is common type system?
How many languages are supported by .net?
Explain the use of serialization and deserialization?
How to view an assembly?
What is the difference between .dll extension and .exe extension files?
What are jagged arrarys ?
How would you implement inheritance using vb.net?
Explain cls?