-
vb.net dlls
How can I make a vb.net dll. I'd like to add a dll to my project so I can place important functions in it for future update purposes. The user can replace the dll instead of the executable. Can anyone help me? Should I be creating a "Class Library"? If so, how should I access it? Any help would be greatly appreciated. Thanks.
-
Yes, use the Class Libray project type. Then when you want to use it in an application you will need to add a reference to it (right click on references and select add reference).
-
Thank you CrazyCoder. You have helped me tremendously. I have made multiple web services but for the life of me I could not remember that the process was similar. Thanks friend. Happy Coding!