When do we need to use .NET Remoting? What is the Serialization usage in .NET Remoting?
+2
A:
If you need to remotely and transparently call functions. Serializable objects must be used as arguments because they need to be reconstructed on the other side of the line.
jdehaan
2010-06-15 05:30:12
+1
A:
.NET Remoting is used for communication between diffrent AppDomains or Contexts in a .NET Process or you can use it for communication between two .NET Processes.
Jehof
2010-06-15 06:06:45