application-domain

Get Assembly Names in Current Application Domain

Hi, I want to get Assemblies Friendly Names in Current Application Domain and hence I wrote something like this : static void Main(string[] args) { foreach (System.Reflection.Assembly item in AppDomain.CurrentDomain.GetAssemblies()) { Console.WriteLine(item.FullName); } } But the problem is ...

Common uses and best practices for application domains in .NET?

What are some guidelines and best practices for when to create new application domains within an application? Also, what are some common uses and examples of how multiple application domains are used whithin an application? ...

What is a .NET Application Domain?

What is exactly is an Application Domain (AppDomain) and how is it different than a process or thread? ...

Application global Error Logger

Hi all, While working on a vb.net application, in which exceptions were handled poorly. It was a big pain. So an Idea flashed , that if it is possible to genearte a library or service or some sort of exe that will log all error of an application without writing a single line of code / minimal code at some global location in host applic...

How should I load assemblies across the application domain boundary to load and unload modules?

I'm aware of the limitations of loading an assembly dynamically during run-time that prevents it from being unloaded. Instead it's been suggested that, if this is a requirement, that I should instead load modules in other application domains and then execute code across the domain boundries. How can I ease this development process and ...