Related resources for Assemblies
  • Dynamically Loading an assembly at Runtime and calling its methods4/6/2022 11:22:31 AM. This article explains how to load an assembly dynamically and call its method.
  • .NET Assemblies Ins and Out : Part I10/14/2021 1:27:23 PM. In Part 1, I will cover what exactly an assembly is, and what an assembly contains.
  • .NET Assemblies Ins and Out : Part III10/14/2021 1:21:01 PM. In this part I will discuss in more detail than Part 2, the available utilities for manipulating assemblies.
  • .NET Assemblies Ins and Out : Part II10/14/2021 1:20:22 PM. In this part, I will discuss both Private and Shared assemblies and how to create a Shared Assembly.
  • Finding What Are the Assemblies Are Loaded Currently in Current AppDomain1/6/2021 9:18:23 AM. Determining what assemblies are currently loaded in the current AppDomain
  • .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.
  • Disassembling With Reflector: Part 11/1/2021 11:50:08 AM. This article shows dissembling of the source code of an assembly using Reflector.
  • Global Assembly Cache(GAC) Hell1/1/2021 9:55:33 AM. After having worked on a project involving heavy use of the Global Assembly Cache, I would like to tell you that using the GAC can be very frustrating. We had a solution which had several projects wit
  • Introduction to the Assembly Concept12/31/2020 10:48:29 AM. This is a brief introduction to the assembly concept, it shows importants issues for a programmer to know.
  • Enhancements in Assemblies and Versioning in Visual Studio 200512/31/2020 8:28:28 AM. The article discusses a couple of features introduced for assembly and versioning in Visual Studio 2005 such as referencing assemblies, registering assemblies to GAC, digital signing and friend assemb
  • How to Load .Net assemblies in powershell12/31/2020 8:21:04 AM. In this article we will be seeing how to load the .Net assemblies in the powershell and how to access the methods.
  • Things to Consider When Designing .NET Applications12/31/2020 7:18:04 AM. Proper design is a major factor that contributes to the scalability and performance of any .NET application.
  • Indepths of Global Assembly Cache12/31/2020 6:58:11 AM. This article gives an indepth knowledge of working of global assembly cache.
  • Assembly in .NET 2.012/28/2020 12:56:30 PM. This article gives you an overview of assemblies used in .net 2.0.
  • How to Call a .NET Assembly From a SQL Server Scheduled Job12/22/2020 7:30:05 AM. This article shows you a step-by-step implementation of a COM client (a SQL Server scheduled Job) using .NET and C#.
  • Unloading Assemblies in C#12/22/2020 4:23:07 AM. This article shows how to unload Application Domain you've just created, as there is no way to unload Assembly themselves.
  • Late Binding With Reflection12/17/2020 4:45:51 AM. Component based technology has done great things for software development, allowing reuse and leading to better-written code that separates subjects and entities into distinct components.
  • When to Delay Sign Assemblies12/14/2020 5:38:15 AM. Delay signing plays a vital role in development when you are building assemblies. In this article, I talk about the significance and process of delay signing the assemblies.
  • Assemblies In .NET Application12/11/2020 2:12:28 AM. In this article, I am going to explain about assemblies in .NET. Also, we will see how we can create assembly with a strong name. This article will help you understand the assembly, deeply.
  • Microsoft Enterprise Instrumentation Framework(EIF) - Quick Guide12/7/2020 1:17:55 AM. The Microsoft EIF is a bunch of assemblies for .Net that make your life easy when it comes to instrumenting your program, by this I mean tracing facilities, writing to the event log, and many other th
  • 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.
  • Creating and Sharing .NET Assemblies For a .NET Application Projects: Scenarios Explained12/2/2020 10:29:16 PM. This article is about the Global Assembly Cache (GAC) and DLLs relevant to the deployment of applications.
  • Dynamically Creating Applications Using System.CodeDom11/26/2020 5:05:30 AM. The article provides an insight on how to create and compile assemblies dynamically.
  • Concept of Shared Assembly in .NET11/26/2020 3:35:41 AM. This article describe the concept of shared assembly with Reflection in .NET.
  • Multilingual Applications in .NET11/23/2020 2:43:42 AM. This article explains the basic understanding on different methods of developing multilingual applications in .NET. Here emphasis is given on handling multiple languages using resource files.
  • Understanding Process, Application Domain And Assemblies11/10/2020 7:11:31 AM. 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.
  • Strong Name Assemblies in .NET4/4/2019 2:54:56 PM. In this session, you will learn what strong name assemblies are and how an assembly can be stored in the GAC Folder. We also discussed, how to create a strong name assembly using Visual Studio.
  • Assembly - Difference between .EXE and .DLL4/4/2019 2:53:07 PM. In this video, we will discuss the difference between EXE and .DLL . An Exe have independent memory address space to execute, whereas a DLL needs a host to execute itself, therefore it needs an EXE.
  • Introduction to Assemblies in .NET4/4/2019 2:50:17 PM. In this video, we will understand assemblies in .NET, Types of assemblies. Assemblies in .NET are single unit of deployment.
  • .NET Framework and Architecture3/1/2019 2:46:40 AM. This article will help your in understanding .NET and .NET architecture.
  • CLR Execution Process6/27/2017 5:37:45 AM. Here you will see CLR Execution Process. The CLR which is the runtime environment for .Net, provides services such as Memory Management, Security Management, Exception Handling, and Cross language Int
  • Extending MVC Controllers From External Assemblies And Projects1/13/2017 11:26:52 AM. In this article you will learn how to extend MVC Controllers from External Assemblies and Projects.
  • 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.
  • Assemblies in C#: Part 25/27/2015 3:09:49 PM. This article explains assemblies in C# with an example.
  • Assemblies in C# : Part 15/26/2015 12:13:48 PM. This article explains Assemblies in C#, a basic unit of application deployment and versioning.
  • Disassembling With Reflector: Part 211/9/2014 5:10:49 PM. This article shows how to reveal the license code information by dissembling its corresponding classes after backtracking the code flow execution.
  • Learn MVC Basics3/18/2014 6:09:16 PM. The Model View Controller (MVC) pattern is an architectural design principal that separates components of web applications.
  • Debugging a Compiled Component10/31/2013 1:21:51 AM. After an assembly is compiled into a dll in a release mode, it is very difficult to gather information from it such as runtime performance, parameters values, etc.
  • Using LINQ in .NET4/24/2013 11:47:55 PM. In this article we will discuss the LINQ approach introduced in .NET 3.5 for querying.
  • Assemblies in ASP.Net using VB.NET12/1/2012 4:30:24 AM. In this article we will discuss what assembly is and why we use it.
  • Understanding How Assert Effects Security in VB.NET11/10/2012 2:56:26 AM. This article expalins about how asserts effect security in VB.NET. How you restrict access to your library modules and resources requires that you understand the pros and cons in the security process used.
  • Building Assemblies using VB.NET11/10/2012 2:39:37 AM. This article discusses how to build assemblies and secure them from being tampered.
  • Reading Assembly attributes in VB.NET11/10/2012 12:53:35 AM. This article allows you to read the assembly attributes information using .NET. The information store in AssemblyInfo files like Title, Description, copyright, Trade mark can be read using reflection and assembly namespace.
  • Getting Images From Scanners and Webcams using VB.NET11/10/2012 12:51:12 AM. In this article I will show how to acquire pictures from imaging peripherals like scanners, webcams and so on, by calling some API functions, provided by the EZTW32.DLL library, and Visual Basic.
  • Attributes Programming in VB.NET11/8/2012 6:24:28 AM. An attribute is a new code level language construct in all major .NET languages. It provides integration of declarative information to assemblies, classes, interfaces, members, etc. at the code level. The information can then be used to change the runtime behavior or collect organizational information.
  • How Can You Migrate your Existing Applications?10/13/2012 4:41:50 AM. When a new technology emerges, companies and developers begin to wait anxiously for answers to their questions.
  • C# Friendly Assemblies: Looking at Building Truly Reusable Components10/3/2012 12:07:53 PM. This article discusses how we can hide our base class implementation and require referencing of our objects through their interfaces. This keeps our own projects loosely coupled and also allows us to publish our assemblies as truly reusable components because they are 100% “Black box”.
  • Searching in User Profile Properties10/3/2012 9:14:10 AM. Enabling search in membership profile properties using SQLSERVER2005 pluggable assembly created by C#.
  • XP, Component Services and .NET9/30/2012 4:52:19 AM. First of all, COM+ does revolutionize COM; it is not only a superior new version of the COM programming model it is also a new platform to design and develop components. In addition, COM+ Services in XP does have some differences from Windows 2000; also XP and COM+ 1.5 offer a richer set of services than was available in COM+ 1.0. This article will describe the basic component services on the XP.
  • WPF: An Introduction (Part 2)9/29/2012 6:33:14 AM. This is the second part of an introduction to WPF; here we are going to learn WPF in detail.
  • Security in .NET.9/29/2012 6:11:26 AM. In this article I will explain you about Security in .NET.
  • Case Study: Demo Networking Financial System 9/23/2012 6:13:38 AM. In this tutorial I will discuss some of the design and development issues that one might consider when using .NET framework for developing Network affiliated applications.
  • Calling External Assemblies From Orchestrations5/15/2012 2:08:30 PM. In this article, I will cover how to call business logic contained in external assemblies from orchestration in order to reuse this component's logic. For the solution, I will create a library with a component which implements the string concatenation logic. Then this assembly will be referenced from an orchestration and the underlying method will be invoked.
  • Calling External Assemblies From Maps in BizTalk5/13/2012 3:43:34 AM. In this article, I will cover how to call external assemblies from maps in BizTalk through a simple example of an external assembly which implements the logic of string concatenation.
  • Web Solution Packages 9/15/2011 10:59:47 PM. Managed code assemblies can be deployed to a SharePoint server using a new capability called Solution Deployment.
  • Namespaces and Assemblies in C#11/27/2009 12:17:33 AM. In this article I will explain about Namespaces and Assemblies in C#.
  • Naming Guidelines in .NET1/3/2006 6:50:56 AM. Commenting and following a uniform naming guidelines in your code is one of good programming practices to make code more useful.
  • Robotics Game Using .NET Languages12/28/2005 7:38:04 AM. It is often not easy to get to know new technologies like .NET if you don’t get introduced to in a work environment.
  • How to work with Assemblies in InstallShield Developer 7.012/24/2005 12:40:44 AM. InstallShield Developer 7.0 is the best solution for providing the very easy user interface to author installations having both .NET and side by side components. This article is a step by step walk through of how to create a deployment project using InstallShield.
  • Low Down on Installing a .NET Assembly into the Global Assembly Cache (GAC)12/19/2005 5:38:15 AM. This article will walk you through the process of giving your assembly a strong name, and installing it into the GAC.
  • .NET framework comparison with Java Architecture12/17/2005 4:08:20 AM. This article outlines Microsoft's proposed standardization of .NET framework in ECMA forum as CLI (Common Language Infrastructure), but the Microsoft documentation refer this as CLR (Common Language Runtime).