---
title: "What are remotable objects in .NET Remoting?"  
description: "What are remotable objects in .NET Remoting?"  
author: "Sumit Kesarwani"  
published: 2014-01-25  
updated: 2020-09-20  
canonical: https://www.mindstick.com/interview/1881/what-are-remotable-objects-in-dot-net-remoting  
category: "c#"  
tags: ["c#"]  
reading_time: 1 minute  

---

# What are remotable objects in .NET Remoting?

Remotable objects are the objects that can be marshaled across the application domains. You can marshal by value, where a deep copy of the object is created and then passed to the receiver. You can also marshal by reference, where just a reference to an existing object is passed.

## Answers

### Answer by Sumit Kesarwani

Remotable objects are the objects that can be marshaled across the application domains. You can marshal by value, where a deep copy of the object is created and then passed to the receiver. You can also marshal by reference, where just a reference to an existing object is passed.


---

Original Source: https://www.mindstick.com/interview/1881/what-are-remotable-objects-in-dot-net-remoting

Copyright © MindStick Software Pvt. Ltd. This Markdown version is provided for developers, AI systems, and offline reading.
