bundle dll into program C#

  • Thread starter Thread starter chris
  • Start date Start date
C

chris

hi,
I have created dll in C# and added reference to it within my program also
written in C# and very thing works fine...
Now, I would like to build my app >>with<< this dll to get one single
executable assembly, how can I do that?
 
You can create an assembly containing several others with the assembly
linker (AL.EXE)

There is however no way to "link" dlls like you would static libraries.

--
Bob Powell [MVP]
Visual C#, System.Drawing

Find great Windows Forms articles in Windows Forms Tips and Tricks
http://www.bobpowell.net/tipstricks.htm

Answer those GDI+ questions with the GDI+ FAQ
http://www.bobpowell.net/faqmain.htm

All new articles provide code in C# and VB.NET.
Subscribe to the RSS feeds provided and never miss a new article.
 
Back
Top