Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > Articles & Samples > .NET Framework > Assembly


Search:
What's New - What's Hot
HOW TO: Create an Assembly with a Strong Name     
Total Hits: 703  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Assemblies can be assigned a cryptographic signature called a strong name, which provides name uniqueness for the assembly and prevents someone from taking over the name of your assembly (name spoofing). If you are deploying an assembly that will be shared among many applications on the same computer, it must have a strong name. This document describes how to create an assembly with a strong name....

Is Someone Using Your Assembly? (SecUtil.exe .NET Framework Tools Series)     
Total Hits: 62  |  Today: 0Author: Namratha Shah      Rating:  
Read Reviews | Write Review |  Your Rating: 

There are a lot of assemblies that we create in our projects daily. Have we ever wondered that all those assemblies that we write after putting in such a lot of hard work and effort could be easily used by someone else. Also at times you don't want others to use a particular class or a method because it may retrieve some important or confidential information. .NET by itself works on the concept of sharing assemblies between applications which enables rapid application development (RAD). We can s...

Assembly Explorer 1.0     
Total Hits: 73  |  Today: 0Author: Leon Langleyben      Rating:  
Read Reviews | Write Review |  Your Rating: 

In our project we developed a bunch of utility classes. For each one of them we had to create some kind of test application just to enter parameters and display result of method invoked. At some point I decided that WinForm we just created should be the last one. Why could not we create entry form on the fly for each method in utility class, we want to test? With this thought in mind, I dig out mine old little utility that uses reflection to display assembly hierarchy, and make couple of additio...

Building Security Awareness in .NET Assemblies : Part 3 - Learn to break Strong Name .NET Assemblies     
Total Hits: 39  |  Today: 0Author: Chua Wen Ching.      Rating:  
Read Reviews | Write Review |  Your Rating: 

Welcome back to part 3 of the Building Security Awareness in .Net Assemblies series. In this article, I will share with you the possibility of breaking Strong Named .Net Assemblies. Make sure you have already read through part 1 and 2 before continuing on....

Introduction to .NET assemblies     
Total Hits: 1415  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This articles introduces to .NET assemblies. It explains many aspects of assemblies in a very simple form. It also illustrates with example how to create simple assemblies and host them in Global Assembly Cache...

Introduction to .NET Reflection     
Total Hits: 873  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Reflection is ability to find information about types contained in an assembly at run time.In this article we will examine the basic and most commonly used features of reflection....

What Is An Assembly?     
Total Hits: 276  |  Today: 0Author: Donny Mack      Rating:  
Read Reviews | Write Review |  Your Rating: 

An assembly is the primary building block of .NET. It's a reusable, self-describing, versionable deployment unit for types and resources. They are self-describing so to allow the .NET runtime to fully understand the application and enforce dependency and versioning rules....

Creating a .NET assembly in C#     
Total Hits: 3062  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this article, Dinar Dalvi looks at assemblies in detail. He guides us as we learn about writing assemblies, signing them, adding them to the global cache, and how to write applications that use these assemblies. Along the way, he goes into detail about every aspect of assemblies....

Introduction to .NET Assemblies     
Total Hits: 1879  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

You must have heard the word assembly many times in .NET documentation. In this article I will share some thing about .NET assemblies. An Assembly is a logical unit of code. Assembly physically exist as DLLs or EXEs. One assembly can contain one or more files. The constituent files can include any file types like image files, text files etc. along with DLLs or EXEs. When you compile your source code by default the exe/dll generated is actually an assembly. Unless your code is bundled as as.....

Sky View : Default Assemblies in .NET Framework  Version: 0.00     Price: $0.00  
Total Hits: 5  |  Today: 0Author: cnranasinghe      Rating:  
Read Reviews | Write Review |  Your Rating: 

Sky View : Default Assemblies in .NET Framework...

A Look into Assemblies in .NET Framework  Version: 0.00     Price: $0.00  
Total Hits: 5  |  Today: 0Author: AzamSharp      Rating:  
Read Reviews | Write Review |  Your Rating: 

The topic of Assemblies is always difficult to grasp for new developers. In this article I will explain what assembly in .NET means and what are the different types of assemblies available in the .NET framework....

Ilasm.exe (MSIL Assembler)  Version: 0.00     Price: $0.00  
Total Hits: 14  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

The MSIL Assembler generates a portable executable (PE) file from Microsoft intermediate language (MSIL). (For more information on MSIL, see Managed Execution Process.) You can run the resulting executable, which contains MSIL and the required metadata, to determine whether the MSIL performs as expected....

NetDasm - A tool to disassemble and patch .NET assemblies     
Total Hits: 74  |  Today: 0Author: Fco. Javier Marin      Rating:  
Read Reviews | Write Review |  Your Rating: 

For my application, I have used Mono.Cecil, a very powerful library for modifying IL code. If you want more info, visit the Cecil homepage. Another Cecil article I found to be helpful is the one by ronnyek: MonoCecilChapter1.asp....

.NET Assembly File Attributes     
Total Hits: 74  |  Today: 0Author: Ravenet      Rating:  
Read Reviews | Write Review |  Your Rating: 

We have good features in .NET based on the application version and customizations. Basically .NET provides a unique assembly file for the common setting within Projects. We can play with that file within code as well. How I can say that? .NET gives few attributes based on assembly manipulations. Let's say we want to know the current version of the Product, so we want to access the assembly file and get an answer from that file. When we try to access that product version attribute in the assembly...

Dynamic Console App for Invoking .NET Assemblies     
Total Hits: 58  |  Today: 0Author: yang yu 1799999.      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is my first time writing an article on here. I will keep it brief and to the point.

The purpose of this application is to utilize .Net reflection to create a console application that will load any .net assembly, query all of its classes and objects, construct instances of these objects, and invoke its methods and properties. The current version still has alot of bugs, but I will fix these bugs in the near future. But this gives you an idea of what I am trying to accomplish....

Merging .NET assemblies using ILMerge     
Total Hits: 72  |  Today: 0Author: Rüdiger Klaehn.      Rating:  
Read Reviews | Write Review |  Your Rating: 

As you know, traditional linking of object code is no longer necessary in .NET. A .NET program will usually consist of multiple parts. A typical .NET application consists of an executable assembly, a few assemblies in the program directory, and a few assemblies in the global assembly cache. When the program is run, the runtime combines all these parts to a program. Linking at compile time is no longer necessary....

How to Be Where Your Customer Wants to Be     
Total Hits: 95  |  Today: 0Author: Tara Prakriya      Rating:  
Read Reviews | Write Review |  Your Rating: 

We all know that applications have evolved, and not just towards Web deployment, .NET Framework development, and mash-up functionality. Applications are also evolving in terms of where and when customers are accessing their applications, their data, facts, and other computing resources....

Assemblies: locating, binding and deploying     
Total Hits: 99  |  Today: 0Author: Cohen Shwartz Oren      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article describes how the CLR locates and binds assemblies and how to change the default behavior when needed (e.g. in the deployment stage).
Any developer and system administrator who deals with .NET assemblies, especially commercial applications, must be familiar with these topics. This knowledge is the best way to plan for service packs, upgrades and hot fixes as they come along....

DOC: Global Assembly Cache (GAC) APIs Are Not Documented in the .NET Framework Software Development Kit (SDK) Documentation     
Total Hits: 276  |  Today: 0Author: MSDN      Rating:  
Read Reviews | Write Review |  Your Rating: 

The native code application programming interfaces (APIs) that allow you to interact with the Global Assembly Cache (GAC) are not documented in the .NET Framework Software Development Kit (SDK) documentation....

No ActiveX Server Registration     
Total Hits: 328  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Need to create a wrapper for ActiveX and use it in ASP.NET? The advantage is these wrappers don't require registration of ActiveX on server. Just copy it, allowing for easy deployment on remote servers. Even run ActiveX on shared hosting!...


1  2  3  4  5  Next >> 


Disclaimer - Privacy
© 2002-2012 DevASP.net