What are static assemblies and dynamic assemlies.
Differences between them ?
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / pravallika
Static assemblies are stored on disk.But dynamic assemblies
are directley loaded from memory.
| Is This Answer Correct ? | 34 Yes | 2 No |
What is the difference between remoting and webservice?
What are the differences between Marshal by value and Marshal by reference?
What do mean by remotable objects in .net remoting?
what are the various type of channels used by .Net remoting and which is the best one?
How to perform Remoting?
What is Remoting?
Explain marshalling and its types in .net remoting
How do you reference to a private & shared assembly ?
Define singleton activation mode in .net remoting?
What is the purpose of strong name?
What is delay signing?
What's the difference btw the following methods in .NET remoting? RegisterWellknownServiceType() RegisterWellknownClientType() RegisterActivatedServiceType() RegisterActivatedClientType()