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 technology enables out-of-proc communication in .NET ?
Explain marshalling and its types in .net remoting
What is a strong name?
What is UUID and GUID what is the size of this ID ?
What is unboxing?
What are the consideration in deciding to use .NET Remoting or ASP.NET Web Services?
Choosing between HTTP and TCP for protocols and Binary and SOAP for formatters, what are the trade-offs?
Explain the difference between the registerwellknownservicetype(), registerwellknownclienttype(), registeractivatedservicetype() and registeractivatedclienttype() in .net?
How to register a shared assembly ?
Garbage collector?s functionality on unmanaged code ?
What are the different types of channels used by .net remoting and which is the best one?
What are various types of assemblies ?