C# Domain Assembly Details
Assembly represents a reusable, versionable, and self-describing building block of a Common Language Runtime application. The System.Reflection namespace contains types that retrieve information about assemblies, modules, members, parameters, and other entities in managed code by examining their metadata.
We use the AppDomain.GetAssemblies method to retrieve an array of Assembly objects representing the assemblies currently loaded into an application domain.
Use the Assembly class to load assemblies, to explore the metadata and constituent parts of assemblies, to discover the types contained in assemblies, and to create instances of those types. The following C# program retrieves the assemblies that have been loaded into the execution context of this application domain.
Full Source C#- An overview of Microsoft .Net Framework
- An introduction to C#
- C# Version History
- C# and VB.NET
- C# and JAVA
- C# sample programs
- C# console based application
- C# windows based application
- C# command line tools
- C# command line arguments
- Difference between .Net Framework and .Net Core
- C# Repository Design Pattern