creating library

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hello,
I have more than one application and I want to use my functions in many
application, how can I do this? Is it possible to create library and use it
in another .net application.
Thanks,
Jim.
 
Hi,

You can create a class library project (in any of the .NET languages) with
your common classes and functionality and then reference it from your other
projects. See:
http://msdn.microsoft.com/library/en-us/vsent7/html/vxconAddingProjectsItemsToNewApplication.asp

Furthermore, you can register it in the global assembly cache (GAC) of the
machine, thus you will not need a local copy of the dll for each project.
See:
http://msdn.microsoft.com/library/en-us/cpguide/html/cpconGlobalAssemblyCache.asp

Greetings
Martin
 
Back
Top