Assembly is a basic element of packaging in .NET. An assembly consists of IL code, metadata that describes what is in the assembly, and any other files or information that the application needs to run, such as graphics and sound files.
Assemblies can be static or dynamic.
Static assemblies can include .NET types (interfaces and classes), as well as required resources for the assembly(bitmaps, JPEG files, resource files, and so on). Static assemblies are stored on disk in PE files.
Dynamic assemblies are one which run directly from memory and are not saved to disk before execution. They can be saved to disk after they have executed.
Assemblies are the basic elements of packaging in .NET. An assembly consists of IL code, metadata that describes what is in the assembly, and any other files or information that the application needs to run, such as graphics and sound files.
Static Assemblies can include .NET types (interfaces and classes), as well as required resources for the assembly (bitmaps, JPEG files, resource files, and so on). Static assemblies are stored on disk in PE files.
Dynamic Assemblies are one which run directly from memory and are not saved to disk before execution. They can be saved to disk after they have executed.
Static Assemblies: - These assemblies are .NET binaries located on the disk as a file or set of files and directly loaded from there as and when CLR requests for them. Whenever one compiles the C# code, one gets STATIC assemblies. Dynamic Assemblies: - These assemblies are loaded directly from the Memory and not stored on the disk. However one can save them later to the disk. These binaries are created on the fly in the memory using SYSTEM.REFLECTION.EMIT namespace. Hence the name- dynamic.
Dynamic references are constructed on the fly as a result of calling various methods, such as System.Reflection.Assembly.Load. Source: .NET Framework Developer's Guide How the Runtime Locates Assemblies
Dynamic unless you pay extra for a static.
Static: Not Moving Dynamic: Moving
Dynamic process. Static means staying the same.
static comes from stationary means not moving and dynamic means moving
static
dynamic
DYnamic
The antonym of dynamic is 'static'.
Static stays the same and dynamic is always different.
If a system is static then it will be known as STATIC SYSTEM and if it is not static then its a common sense that it will be a DYNAMIC SYSTEM.