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
How do you define a read only property in a class module?
Name some of the features of C# which are not present in VB.NET?
Explain strong name in .net assembly?
Explain the differences between vb.net and c#, related to oops concepts?
Explain about the keyword must inherit?
What is difference between import system.data.sqlclient,system.data.oledb?
What is static member?
Explain some of the exclusive features which are present in vb?
What are option strict and option explicit?
What is late binding and early binding?
What is portable executable?
How do you call a stored procedure in Visual Basic?
What are the features of c# which are not present in vb.net?
What are the different types of applications supported in .net (or) .net framework?
What is the difference between vb 6 and vb.net?