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
What are the advantages of using c#?
If you define a user defined data type by using the class keyword, is it a value type or reference type?
What is cli in c#?
What is default parameter in c#?
What does int32 mean?
What do u mean by delegation?
What is the default value of guid in c#?
Which are the access modifiers available in c#?
What is Garbage Collection in .Net?
what optimizations does the c# compiler perform when you use the /optimize+ compiler option?
In which format you can pass the value in the sleep function?
What all details the assembly manifest will contain?
Explain the advantage of using system.text.stringbuilder over system.string?
Write a short note on interface?
Can a struct have a default constructor (a constructor without parameters) or a destructor in c#?