How to register .NET assembly
C#
2
Posts
2
Posters
0
Views
1
Watching
-
I want to register a .NET assembly as a library, so that any program can import it. As easy as you do with "using System;" how can I do that? Thank for you help.
-
I want to register a .NET assembly as a library, so that any program can import it. As easy as you do with "using System;" how can I do that? Thank for you help.
You can add the assembly to the GAC[^] (Global Assembly Cache). That way, the clients of the library can all share the same assembly, instead of each one having a copy in its application directory. Have a look at gacutil[^], which is a utility in the SDK that allows you to add/remove assemblies from the GAC.
Regards Senthil _____________________________ My Blog | My Articles | WinMacro