Interview Questions

What are remotable objects in .NET Remoting?

.NET Interview Questions and Answers


(Continued from previous question...)

47. 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.

(Continued on next question...)

Other Interview Questions