Question : What are the different types of .NET assemblies?

I am wondering, and also and where can you store them?  How?

What are the file extensions?

Answer : What are the different types of .NET assemblies?

Types of Assemblies

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.

jppinto
Random Solutions  
 
programming4us programming4us