What is assembly in .NET?

devquora
devquora

Posted On: Feb 22, 2018

 

Assembly is a code library that is partially compiled. It is used for grouping many logical units together. We can use this for deployment and for improving security. One assembly can contain one or many code files. This is because, in .NET, different languages can be used to create one code file. There are two types of assemblies, process, and library assembly. Generally, the .NET assembly contains codes in CIL language which is then compiled by CLR and JIT to machine language.

    Related Questions

    Please Login or Register to leave a response.

    Related Questions

    .NET Interview Questions

    What is .NET?

    .NET is a software development framework by Microsoft...

    .NET Interview Questions

    What are the purposes of using .NET?

    .NET is used for creating web applications, Windows mobile, and Store applications, Windows Desktop..

    .NET Interview Questions

    How is .NET able to support a lot of languages?

    .NET is equipped with Microsoft Intermediate Language (MISL) that has got codes compiled within itself...