Answer Posted / bsatish
AppDomains are usually created by hosts. Examples of hosts
are the Windows Shell, ASP.NET and IE. When you run a .NET
application from the command-line, the host is the Shell.
The Shell creates a new AppDomain for every application.
AppDomains can also be explicitly created by .NET
applications. Here is a C# sample which creates an
AppDomain, creates an instance of an object inside it, and
then executes one of the object's methods. Note that you
must name the executable 'appdomaintest.exe' for this code
to work as-is.
• using System;
• using System.Runtime.Remoting;
•
• public class CAppDomainInfo : MarshalByRefObject
• {
• public string GetAppDomainInfo()
• {
• return "AppDomain = " +
AppDomain.CurrentDomain.FriendlyName;
• }
• }
• public class App
• {
• public static int Main()
• {
• AppDomain ad =
AppDomain.CreateDomain( "Andy's new domain", null, null );
• ObjectHandle oh = ad.CreateInstance
( "appdomaintest", "CAppDomainInfo" );
• CAppDomainInfo adInfo =
(CAppDomainInfo)(oh.Unwrap());
• string info =
adInfo.GetAppDomainInfo();
• Console.WriteLine( "AppDomain
info: " + info );
• return 0;
• }
}
Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Explain the term inheritance in C#.
What is object pool in .net?
How Do You Convert A Value-type To A Reference-type?
Is var a data type?
Why does my windows application pop up a console window every time I run it?
What are access modifiers in c#?
Explain the difference between the debug class and trace class?
Can you instantiate an abstract class c#?
What is a dimensional array?
Can you store strings in arrays?
What is difference between a constant and read-only in C#?
How does c# generics and c++ templates compare?
What is the difference between internal and private in c#?
Why do we need generics in c#?
What is reflection in c#?