How to build a DLL in C#?
-
Is there not an option to make a Class Library? In VS.net Standard, the option is not there, but you can always use SharpDevelop[^]. It is a free development environment.
Pumk1nh3ad illustrates that Intelligent Design oft goes awry. - Ed Gadziemski
-
The "Class Library" project type always compiles into a .dll. Keep in mind, though, that this is a .NET assembly, not your common Win32 .dll that can be linked into an MFC app. If you need a .dll that can interop with a normal windows or MFC app, you will want to go into the projects properties, and enable exposing the project through COM.
-
The "Class Library" project type always compiles into a .dll. Keep in mind, though, that this is a .NET assembly, not your common Win32 .dll that can be linked into an MFC app. If you need a .dll that can interop with a normal windows or MFC app, you will want to go into the projects properties, and enable exposing the project through COM.