Tagged Questions
3
votes
3answers
166 views
implement callback over ApplicationDomain-boundary in .net
I load a dll dynamically using an Applicationdomain to unload when nessesary. What i cant get to work is a callback-method from the created Appdomain if the task in the loaded dll terminates itself.
...
2
votes
1answer
119 views
What are the different “components” that make up Processes, AppDomains, Contexts, and Threads (and what are their relationships)?
I am realy hoping to get a definitive answer to this.
I have a previous question where I asked "What is a thread (really)?" I got some really good answers and my takeaway from this was that a Thread ...
0
votes
1answer
58 views
How can I have an application stack multiple processes into the same application domain?
So here's an example of what I'm wanting to do:
Run test.exe, new Windows process is created, new CLR Application Domain is created, new CLR process is created.
Run test.exe, new Windows process is ...
0
votes
3answers
401 views
application domains and threads
A quote from MSDN: http://msdn.microsoft.com/en-us/library/6kac2kdh.aspx
One or more managed threads
(represented by
System.Threading.Thread) can run in
one or any number of application
...