Steps to create a .NET Assembly - C#.NET

Explain the steps to create a .NET Assembly.

- Assembly is the reply to the issues that Microsoft defined as DLL Hell.
- But it cannot be the end of all the issues caused by DLL but, its a very big step ahead, and it has the capacity to describe itself, so in this way there is no problem when you change the version of one or more of your DLL.

Following are the steps to create a .NET assembly:

1. Add a project from templates called "Class Library"
2. Optionally in property pages of this project set the output type to Class Library.
Steps to create and implement Satellite Assemblies - C#.NET
Steps to create and implement Satellite Assemblies - Satellite assemblies are resource assemblies specific to language/culture...
Purpose of ResourceManager class - C#.NET
Explain the purpose of ResourceManager class - Use ResourceManager class to retrieve resources that exist in an assembly...
Steps to prepare culture-specific formatting - C#.NET
Steps to prepare culture-specific formatting - The NumberFormatInfo class is used to define how symbols, currencies etc are formatted based on specific cultures...
Post your comment