---
title: "What is difference between inprocess and out of process ?"  
description: "What is difference between inprocess and out of process ?"  
author: "Anonymous User"  
published: 2011-05-20  
updated: 2020-09-23  
canonical: https://www.mindstick.com/interview/957/what-is-difference-between-inprocess-and-out-of-process  
category: "vb.net"  
tags: ["vb.net"]  
reading_time: 1 minute  

---

# What is difference between inprocess and out of process ?

An in-process component is implemented as a DLL, and runs in the same process space as its client app, enabling the most efficient communication between client and component.Each client app that uses the component starts a new instance of it.

An out of process component is implemented as an EXE, and unlike a dll, runs in its own process space. As a result, exe’s are slower then dll’s\
because communications between client and component must be marshalled across process boundaries. A single instance of an out of process component can service many clients.

## Answers

### Answer by Anonymous User

An in-process component is implemented as a DLL, and runs in the same process space as its client app, enabling the most efficient communication between client and component.Each client app that uses the component starts a new instance of it.

An out of process component is implemented as an EXE, and unlike a dll, runs in its own process space. As a result, exe’s are slower then dll’s\
because communications between client and component must be marshalled across process boundaries. A single instance of an out of process component can service many clients.


---

Original Source: https://www.mindstick.com/interview/957/what-is-difference-between-inprocess-and-out-of-process

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
