Resources  
  • How to Unload an Assembly Loaded Dynamically Using ReflectionJun 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#.
  • Unloading Assemblies in C#Jul 08, 2012. Unloading an Application Domain is crucial for releasing resources. Unlike assemblies, Application Domains can be unloaded, aiding in resource management. However, the default CLR-created domain is immutable. Unloading involves invoking the Unload function on the created domain.
  • Visual Studio 2010 Project TargetsNov 18, 2012. This article provides a very simple sample of targets in a Visual Studio 2010 project file.
  • Understanding the Page Life Cycle of an ASP.NET and its controlsSep 02, 2009. In this article I will explain about series of steps and events that occur in a page life cycle in ASP.NET.