Related resources for .NET Assemblies
  • How to Load .NET Assemblies in Powershell2/6/2024 8:35:11 AM. In this article, we will see how to load the .Net assemblies in the PowerShell and how to access the methods. The class library has been created to encapsulate functionality, forming the foundation of
  • .NET Assemblies Ins and Out : Part III2/6/2024 8:27:12 AM. This is the third part of a series on .Net assemblies, delving into utilities for assembly manipulation. The Assembly Linker (AL.exe) aids in GAC installation, manifest creation, and resource addition
  • .NET Assemblies Ins and Out : Part I2/1/2024 11:48:55 AM. In Part 1, I will cover what exactly an assembly is, and what an assembly contains. Part 1 defines assemblies, their metadata, and types. It clarifies misconceptions between .NET PE files and traditio
  • .NET Assemblies Ins and Out : Part II2/1/2024 11:13:37 AM. In this part, I will discuss both Private and Shared assemblies and how to create a Shared Assembly. The creation process involves the Strong Name utility, signing the assembly, and using the Assembly
  • Creating and Sharing .NET Assemblies For a .NET Application Projects2/1/2024 11:13:07 AM. This article is about the Global Assembly Cache (GAC) and DLLs relevant to the deployment of applications. It covers assembly creation, referencing, and deployment to the Global Assembly Cache (GAC).
  • .NET Application Domain Internals1/3/2021 4:51:53 AM. 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.
  • Bypassing Obfuscation: Ciphered Code Reverse Engineering12/3/2020 5:28:36 AM. In this article, we have performed reverse engineering over a protected binary by deep analysis of both obfuscated source code and MSIL assembly code.
  • Autocomplete TextBox in WPF (Using Only .NET and WPF Libraries)5/31/2015 6:39:26 PM. In this source sample I show how to add the autocomplete functionality in your WPF application's TextBox control using your own model data, .NET assemblies and WPF assemblies.