What is an AppDomain? What are the benefits of AppDomains or why Microsoft brought the concept of AppDomains, what was the problem without AppDomains?
Please elaborate.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
An
AppDomainprovides a layer of isolation within a process. Everything you usually think of as ‘per program’ (static variables etc) is actually per-AppDomain. This is useful for:AppDomain, but not an assembly within anAppDomain)The pain is you need to use remoting etc.
See MSDN for lots more info. To be honest, it isn’t something you need to mess with very often.