Problem : I have to call some badly written 3rd party COM components that have memory leaks and uses Single […]
Tag: appdomain
How do I dynamically load raw assemblies that contains unmanaged code?(bypassing ‘Unverifiable code failed policy check’ exception)
Problem : I’m going to give an example of using System.Data.SQLite.DLL which is a mixed assembly with unmanaged code: If […]
Load Current Assembly into different AppDomain
Problem : I have created an AppDomain with a different base directory. However, I cannot seem to load the currently […]
In .Net is the ‘Staticness’ of a public static variable limited to an AppDomain or the whole process?
Problem : Is one copy of a public static variable created for each AppDomain in a process or is it […]
Can I prevent an uncaught exception in another AppDomain from shutting down the application?
Problem : I’m having trouble with a misbehaved library that throws an exception in a finalizer, which of course crashes […]
Sandbox IronPython?
Problem : Is it possible to run an IronPython interpreter inside my .Net application, but inside a sandbox? I want […]
Can I make the default AppDomain use shadow copies of certain assemblies?
Problem : A short explanation of why I want to do this: I am busy writing a plugin for Autodesk […]
how to call a method of a class from another appDomain
Problem : my application want to call a method of a class that is from another AppDomain. AppDomain env = […]
What is a .NET application domain?
Problem : In particular, what are the implications of running code in two different application domains? How is data normally […]
List AppDomains in Process
Problem : Is there any possibility how to enumerate AppDomains within Process? Solution : You may want to look at […]