Unload Assembly

  • Thread starter Thread starter Danilo
  • Start date Start date
D

Danilo

How i unload Assembly without work in separate AppDomain?
Or, if i work in separate domain How i get and set object between two domain
without declare serializable?

thank
 
The short answer is - you can't.
If you create MarshalByRef classes, you won't have to create serializable
classes to access them cross-domain, but i urge you to carefully read the
differences between MBR classes and MBV classes (marshal-by-value, or
serializable).

-Rob Teixeira [MVP]
 
Back
Top