What are static assemblies and dynamic assemlies.
Differences between them ?
Answer Posted / jyoti sharma
Assemblies can be static or dynamic. Static assemblies can
include .NET Framework types (interfaces and classes), as
well as resources for the assembly (bitmaps, JPEG files,
resource files, and so on). Static assemblies are stored on
disk in PE files. You can also use the .NET Framework to
create dynamic assemblies, which are run directly from
memory and are not saved to disk before execution. You can
save dynamic assemblies to disk after they have executed.
| Is This Answer Correct ? | 39 Yes | 2 No |
Post New Answer View All Answers
Explain Singleton design pattern of Remoting?
What do mean by remotable objects in .net remoting?
What are the consideration in deciding to use .NET Remoting or ASP.NET Web Services?
What are the threading types?
Elaborate the term WebService and how it differ from Remoting?
How to directly call a native function exported from a dll?
What is objref object in remoting?
Name the distributed systems available apart from .net remoting?
What are the information required to configure remote objects?
Define the lease of the object?
Can we configure a .net remoting object via xml file?
How do you directly call a native function exported from a DLL?
Is it a good design practice to distribute the implementation to remoting client?
What are static assemblies and dynamic assemblies. Differences between them?
Explain the differences between marshal by value and marshal by reference?