I want to create an application domain with default permissions and load assembly into the application domain with default privileges and execute the methods inside the assembly.
I want to create an application domain with default permissions and load assembly into
Share
You may take a look at the following article on MSDN. Or if you want to construct an instance of some type inside another AppDomain (assuming this type has a default constructor):
The
instancevariable returned with this method lives on your newly created application domain and you are ready to manipulate it.