does the object creating a sub appdomain get instantiated in that sub appdomain?
Posted
by Eric
on Stack Overflow
See other posts from Stack Overflow
or by Eric
Published on 2010-05-20T19:01:10Z
Indexed on
2010/05/20
19:20 UTC
Read the original article
Hit count: 292
does the object creating a sub appdomain get instantiated in that sub appdomain?
I have an object that is in the main AppDomain and it is creating another AppDomain and it requires the calling class to be serializable and is creating an instance of the calling class in the new sub AppDomain.
I'm wondering if that is how it is, or if there is a way that I can create the sub appDomain but still hold on to the original instantiation of the calling object in the main appDomain
© Stack Overflow or respective owner