C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Piero Viano(1)
Sai Kumar Koona(1)
Rajendra Kumar Yerra(1)
Dennis Thomas(1)
Ajay Yadav(1)
Sunny Sharma(1)
Nitya Sharma(1)
Girish Nehte(1)
Resources
No resource found
Bringing .NET Remoting and AppDomains Back to .NET 8 and 10
Jul 30, 2026.
Migrate .NET Framework Remoting & AppDomains to .NET 8 with compatibility layers. Retain APIs, gain modern runtime benefits.
Finding What Are the Assemblies Are Loaded Currently in Current AppDomain
May 14, 2012.
Determining what assemblies are currently loaded in the current AppDomain. This guide addresses a common problem in software development: issues with DLL integration into main applications.
AppDomain concept in ASP.Net
Jul 12, 2007.
This article explains about the concept of an Application Domain which is shortly known as AppDomain.
Understanding Process, Application Domain And Assemblies
Jan 05, 2018.
We usually come across these terms: Process, Application Domain or App Domain, Assemblies. It is good to have a basic knowledge of these terms and how each one is related to each other.
.NET Application Domain Internals
Feb 10, 2015.
In this article, you‘ll drill deeper into the details of how an assembly is hosted by the CLR and come to understand the relationship between Application Domains (appdomain) and processes.
BaseDirectory vs CurrentDirectory in C#
Sep 19, 2013.
While replying in forum, I got this question. This may not be a new or exciting topic but the reason behind I’m sharing this post is to make that person understand it in a better way as well as the others alike.
Loading an Assembly on Demand
Jan 28, 2012.
In this article, learn to dynamically load assemblies across different code bases, addressing challenges of location variations and avoiding locking in the current AppDomain.Explore the significance of new AppDomains, instantiation methods, and interfaces for dynamic loading.
How to Unload an Assembly Loaded Dynamically Using Reflection
Jun 01, 2011.
Learn how to unload an assembly that was dynamically loaded using reflection in .NET. This guide covers essential steps, including using AppDomain for isolation, managing memory efficiently, and practical code examples in C#.