aewarnick Posted March 12, 2003 Posted March 12, 2003 I have a dll called ProgramAW that I made from my class Andrew. I put it in my references and but it only works if I use copy local when I copile it. Is there any way to embed my dll in the program so that I don't have an extra piece with my program or am I stuck with it? Quote C#
*Gurus* divil Posted March 13, 2003 *Gurus* Posted March 13, 2003 You're stuck with it. That's what DLLs are for. Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
aewarnick Posted March 13, 2003 Author Posted March 13, 2003 Maybe I will just not use dll and stick with plain source code. Are there any disadvantages to that? Quote C#
Heiko Posted March 13, 2003 Posted March 13, 2003 A DLL is the physical form of the logical concept of an interface. I think DLLs have the clear advantage of re-usability. Quote .nerd
aewarnick Posted March 13, 2003 Author Posted March 13, 2003 That is true. Maybe I am making my class wrong. I am putting all and I mean all of my methods into one class in one dll. I am worried that it may slow the programs down but it may not since all the methods except one are static. Quote C#
*Gurus* divil Posted March 13, 2003 *Gurus* Posted March 13, 2003 Is there a reason your application has to be designed this way? It sounds almost like you're neglecting the OOP features of C# to do procedural programming. Quote MVP, Visual Developer - .NET Now you see why evil will always triumph - because good is dumb. My free .NET Windows Forms Controls and Articles
aewarnick Posted March 13, 2003 Author Posted March 13, 2003 Maybe I just don't know what I am doing yet. . .If I don't let me know, please! Quote C#
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.