Appdomain [modified]
-
App-domain, According to my understanding is, like in the presentation layer, I am giving memory to at dll at run-time, on completion of operation, this is segregated from the presentation layer ? Please correct if there is any mistake.
modified on Thursday, March 31, 2011 7:13 AM
-
App-domain, According to my understanding is, like in the presentation layer, I am giving memory to at dll at run-time, on completion of operation, this is segregated from the presentation layer ? Please correct if there is any mistake.
modified on Thursday, March 31, 2011 7:13 AM
Hmm. Slightly confused by what you're saying. These are totally different things. Your presentation layer is typically your GUI or other type of user-interface. An AppDomain is conceptually like a mini-process (Window's process) that can be hosted with others in a single Process, for the benefit of performance/scalability etc. whilst providing some isolation between other domains.
Regards, Rob Philpott.