Answer Posted / 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 View All Answers
How does .net framework works?
Explain .Net Framework? Why we use it?
What is viewbag title?
Explain something about model, view and controllers in asp.net mvc?
Where are the routing rules defined in an asp.net mvc application?
Do I need microsoft .net framework?
Can any particular component of .net framework 3.0 be removed?
what is more complex to implement property, methods or event? how can I define criteria to compare the difficulty of implementation between them? for example the number of methods wanted to implements property is 2 methods. how many methods I need it to implements events?
What is meant by tempdata in mvc?
What are the possible razor view extensions?
How route table is created in ASP.NET MVC?
What is .net framework in simple terms?
what is conceptual model?
What is filters in web api?
Explain dependency resolution?