---
title: "What are the different types of assemblies? Explain them in detail."  
description: "What are the different types of assemblies? Explain them in detail."  
author: "Sumit Kesarwani"  
published: 2014-09-04  
updated: 2020-09-15  
canonical: https://www.mindstick.com/interview/2141/what-are-the-different-types-of-assemblies-explain-them-in-detail  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# What are the different types of assemblies? Explain them in detail.

## The following are the two types of assemblies:

**Private Assembly -** Refers to the assembly that is used by a single application. Private assemblies are kept in a local folder in which the client application has been installed.

**Public or Shared Assembly -** Refers to the assembly that is allowed to be shared by multiple applications. A shared assembly must reside in Global Assembly Cache (GAC) with a strong name assigned to it.

## Answers

### Answer by Sumit Kesarwani

## The following are the two types of assemblies:

**Private Assembly -** Refers to the assembly that is used by a single application. Private assemblies are kept in a local folder in which the client application has been installed.

**Public or Shared Assembly -** Refers to the assembly that is allowed to be shared by multiple applications. A shared assembly must reside in Global Assembly Cache (GAC) with a strong name assigned to it.


---

Original Source: https://www.mindstick.com/interview/2141/what-are-the-different-types-of-assemblies-explain-them-in-detail

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
