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
How do you call a stored procedure in Visual Basic?
What are the different variables in vb.net?
Explain jit?
Explain about branching logic control in vb.net?
What are the difference between dispose(), close(), exit(), end()?
Explain and brief about rapid application development tool?
Explain an assembly?
What is the diff between vb mdi form and .net mdi form?
What is difference between inline and code behind?
What is break mode? What are the options to step through code?
What is the difference between convert.tostring and i.tostring method?
What is sorting in vb?
What are the shared variables?
Write the role of new keyword?
Which properties are used to bind a DataGridView control?