---
title: "What are the different type of assemblies?"  
description: "What are the different type of assemblies?"  
author: "Shikhar Arora"  
published: 2019-12-07  
canonical: https://answers.mindstick.com/qa/92556/what-are-the-different-type-of-assemblies  
category: "technology"  
tags: [".net programming"]  
reading_time: 2 minutes  

---

# What are the different type of assemblies?

What are the different type of assemblies

## Answers

### Answer by Shrikant Mishra

The Assembly in dotnet, is a unit of deployment like EXE or a DLL. This is completely self-describing and is is a reusable, versionable, self-describing deployment unit for types and resources this is the primary building block of a .NET application. An Assemblie provide the infrastructure to allow the runtime to fully understand the contents of an application and to enforce the versioning and dependency rules defined by the application.

Into the DotNet, these are three types of Assemblies are available:

**First is Private Assemblies** : The Private Assemblies are designed to be used by one application and must reside in that application's directory or subdirectory.

**Second is Shared Assemblies:** The Microsoft offers the shared assembly for those components that must be distributed. This centered around two principles. First of all, its called side-by-side execution, allows the CLR to house multiple versions of the same component on a single machine. Then after, termed binding, ensures that clients obtain the version of the component they expect.

**And Third is Satellite Assembly:** The satellite Assembly is defined as an assembly with resources only, no executable code.

![What are the different type of assemblies?](https://answers.mindstick.com/questionanswer/b788e589-6115-4c07-a677-6c00fec896af/images/1f256889-04aa-4726-998f-36299214a411.jpeg)\


---

Original Source: https://answers.mindstick.com/qa/92556/what-are-the-different-type-of-assemblies

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
