What are the types of assemblies



What are the types of assemblies..

Answer / kirti

There are four types of assemblies in .NET:

Static assemblies

These are the .NET PE files that you create at compile time.

Dynamic assemblies

These are PE-formatted, in-memory assemblies that you dynamically create at runtime using the classes in the System.Reflection.Emit namespace.

Private assemblies

These are static assemblies used by a specific application.

Public or shared assemblies

These are static assemblies that must have a unique shared name and can be used by any application.

An application uses a private assembly by referring to the assembly using a static path or through an XML-based application configuration file. While the CLR doesn't enforce versioning policies-checking whether the correct version is used-for private assemblies, it ensures that an

application uses the correct shared assemblies with which the application was built. Thus, an application uses a specific shared assembly by referring to the specific shared assembly, and the CLR ensures that the correct version is loaded at runtime.

In .NET, an assembly is the smallest unit to which you can associate a version number;

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Dot Net Framework Interview Questions

What is the importance of NonActionAttribute?

0 Answers  


What is GUID and why we need to use it and in what condition? How this is created

1 Answers  


What is CLR and how it generates native code ?

1 Answers   Digital GlobalSoft, Vital Soft,


What is latest version of .net framework?

0 Answers  


mention what is the difference between ado.net and classic ado?

0 Answers   Microsoft,






can we call the garbage collector to run explicicitly?

6 Answers   Kanbay, Volvo,


Difference between ASP.NET MVC and ASP.NET WebForms?

0 Answers  


How to add 'ASPNET.mdf' file into server explorer in visual studio 2005?

2 Answers  


what is Framework?

3 Answers  


How to change the action name in ASP.Net MVC?

0 Answers  


What are Action Methods in ASP.NET MVC?

0 Answers  


What is the difference between old ADO.NET and Entity framework coding techniques?

0 Answers  


Categories