How to create a DLL in VB.NET
3 answers
When you create your class library in Visual Studio, it will generate a DLL for you and place it in the bin directory.
YourProject/bin/Debug/YourProject.dll
YourProject/bin/Release/YourProject.dll
It will be placed in a folder representing your build mode (Debug / Release), which you can usually switch to your toolbar.
+2
a source to share