.NET FAQs Unleashed!
 

What are the different types of assemblies in .NET?

An assembly may be Public or Private. A public assembly is also called a Shared Assembly.

Difference between Public and Private assembly

A Satellite Assembly - is an assembly that contains only resources, and no code. The resources are location specific. A satellite assembly is associated with a main assembly, the one that actually contains the code.

1  2  3  4  5  6  7  8  9  10  11  12  13  14  15  16  17  18  19  20  21  22