【发布时间】:2015-08-18 15:42:25
【问题描述】:
如果我创建一个对象并使用 RemotingServices 跨 AppDomain 编组它,如下所示:
Object obj = new Object();
RemotingServices.Marshal(obj, null, null);
以后有没有办法使用相同的 URI 编组一个新对象?我想我必须删除第一个对象,但我不知道该怎么做。
【问题讨论】:
标签: c# .net uri appdomain remoting