TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
C# Corner
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
About Assemblies
Share
facebook
twitter
linkedIn
Reddit
Topics
No topic found
Content Filter
Articles
Videos
Blogs
News
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Chris Rausch (4)
Ajay Yadav (3)
Nilesh Jadav (3)
C# Curator (2)
Kiranteja Jallepalli (2)
John Godel (2)
John Charles Olamendy (2)
Deepak Dwij (1)
Subburam Karthikeyan (1)
Vikas Garg (1)
samuel.ludlow (1)
Prakash Tripathi (1)
Surya Kant (1)
Vandita Pandey (1)
Sam Haidar (1)
Frank Gutierrez (1)
Ibrahim Ersoy (1)
Sairam (1)
Muhammad Asif (1)
Habibul Rehman (1)
Sai Kumar Koona (1)
Vijai Anand Ramalingam (1)
Akkiraju Ivaturi (1)
Ashish Shukla (1)
Sridhar Subramanian (1)
gsuttie (1)
Pradeep Kellangere (1)
Dennis Thomas (1)
Rion Williams (1)
Afzaal Ahmad Zeeshan (1)
Saineshwar Bageri (1)
Wdenton (1)
Shankar M (1)
Abhimanyu K Vatsa (1)
Seakar Krishna (1)
Mihir Pathak (1)
Alessandro Del Sole (1)
Deepak Dutta (1)
Matthew Cochran (1)
Amr Sayed (1)
Nipun Tomar (1)
Abebe Assefa (1)
Ramesh dharam (1)
Praveen Kumar (1)
Mahesh Chand (1)
fdutoit (1)
Santhosh Kumar R V (1)
Ashish Banerjee (1)
Related resources for Assemblies
No resource found
Concept of Shared Assembly in .NET
5/17/2024 10:21:48 AM.
Shared assemblies in .NET are reusable components accessible by multiple applications. They promote code sharing, reducing redundancy and enhancing maintainability. Strongly named and stored in the Gl
Dynamically Creating Applications Using System.CodeDom
5/17/2024 10:20:56 AM.
System.CodeDom in .NET enables dynamic application creation by programmatically generating and compiling code at runtime, facilitating flexible and customizable software development processes.
.Net Architecture And .Net Framework Basics
5/5/2024 8:25:53 AM.
.NET architecture encompasses the Common Language Runtime (CLR) and Common Type System (CTS), executing Intermediate Language (IL) through Just-In-Time (JIT) compilation.
Microsoft Enterprise Instrumentation Framework(EIF) - Quick Guide
5/1/2024 11:09:43 AM.
Explore Microsoft Enterprise Instrumentation Framework (EIF) with our Quick Guide. Learn to monitor, log, and optimize application performance effortlessly, ensuring robustness and efficiency in your
Preparing .NET Interview - Part 1 (Framework)
4/29/2024 11:56:13 AM.
Preparing for a .NET interview (Part 1 - Framework) involves understanding key concepts like CLR, BCL, assemblies, and memory management. Familiarize with C#, garbage collection, reflection, and .NET
Assemblies In .NET Application
4/29/2024 11:13:26 AM.
Understand Assemblies in .NET, including Private and Shared types, managing in Global Assembly Cache, generating Public Key with Sn.exe, versioning with AssemblyInfo.cs, and installing with Gacutil. L
When to Delay Sign Assemblies
4/29/2024 10:00:10 AM.
Delay signing assemblies is useful when collaborating with third-party developers or in scenarios requiring assembly testing before final signing. It allows development to proceed while ensuring event
Late Binding With Reflection
4/25/2024 11:30:37 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.
How to Call a .NET Assembly From a SQL Server Scheduled Job
4/25/2024 8:29:38 AM.
Explore step-by-step guide showcasing integration of unmanaged calls via DTS ActiveX script to a .NET assembly within a SQL Server scheduled job. Understand assembly registration, system path configur
Unloading Assemblies in C#
4/25/2024 7:56:13 AM.
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 im
Enhancements in Assemblies and Versioning in Visual Studio
4/22/2024 8:18:23 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
Adding Nuget Packages/Dependent Assemblies into Microsoft D365 CRM Plugin
2/20/2024 9:56:15 AM.
Adding Nuget Packages into Microsoft D365 CRM Plugin.
Learn about Reflection in C#
2/13/2024 6:39:35 AM.
Reflection is a powerful feature in C# that enables you to inspect and interact with types, assemblies, and objects at runtime. It provides a way to dynamically discover and use information about type
Finding What Are the Assemblies Are Loaded Currently in Current AppDomain
2/7/2024 4:59:09 AM.
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.
How to Load .NET Assemblies in Powershell
2/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 III
2/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 I
2/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 II
2/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 Projects
2/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).
CLR Execution Process
9/25/2023 4:00:15 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
Dynamically Loading an assembly at Runtime and calling its methods
4/6/2022 11:22:31 AM.
This article explains how to load an assembly dynamically and call its method.
.NET Application Domain Internals
1/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 1
1/1/2021 11:50:08 AM.
This article shows dissembling of the source code of an assembly using Reflector.
Global Assembly Cache(GAC) Hell
1/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
Multilingual Applications in .NET
11/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 Assemblies
11/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 .NET
4/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 .DLL
4/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 .NET
4/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 Architecture
3/1/2019 2:46:40 AM.
This article will help your in understanding .NET and .NET architecture.
Extending MVC Controllers From External Assemblies And Projects
1/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 2
5/27/2015 3:09:49 PM.
This article explains assemblies in C# with an example.
Assemblies in C# : Part 1
5/26/2015 12:13:48 PM.
This article explains Assemblies in C#, a basic unit of application deployment and versioning.
Disassembling With Reflector: Part 2
11/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 Basics
3/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 Component
10/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 .NET
4/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.NET
12/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.NET
11/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.NET
11/10/2012 2:39:37 AM.
This article discusses how to build assemblies and secure them from being tampered.
Reading Assembly attributes in VB.NET
11/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.NET
11/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.NET
11/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 Components
10/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 Properties
10/3/2012 9:14:10 AM.
Enabling search in membership profile properties using SQLSERVER2005 pluggable assembly created by C#.
XP, Component Services and .NET
9/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 Orchestrations
5/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 BizTalk
5/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 .NET
1/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 Languages
12/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.0
12/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.
.NET framework comparison with Java Architecture
12/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).