What is intermediate language in .NET ?
Answer Posted / vipul sachan
In .net when code compile by c# or vb.net compiler then it
convert into managed module.managed module contain IL along
with metadata.there are some points regarding IL as following -
1-IL commonly known as MSIL(microsoft intermediate language).
2-IL can readable only by CLR.Because of IL .net
applications are platform independent.
3.if we make application using any language(language must
support to .net environment)then after compilation it will
convert to IL.IL can be readable only by CLR.
4.In this way, through IL we achieve interoperability in .net.
5.we can check Intermediate language by command ILDASM
+space bar + file-name.dll/exe in visual studio command prompt.
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
What is the size of .net object?
How to connect crystal report in vb.net ?
What is the use of system.diagnostics.process class?
How to run a dos command in vb.net?
What is the differences between dataset.clone and dataset.copy?
How to retrieve images in sql server database through vb.net?
What is code access security?
List the types of authentication?
Explain an assembly?
Which dll is used for microsoft .net run time?
What is early binding?
Write a program that would find the nth term of a geometric progression, given the value of first term and common ratio. Any inbuilt function that the language provides for calculating exponent should not be used.
What is the difference between c# and vb.net?
What is an assembly and its use?
what is common type system?