create dll file in c# [closed]
How can I create a dll file in C#?
File menu -> New Project -> choose your Programing language (Visual C#/VB etc.) -> Windows -> Class Library.
After the project has been created, make use of Build menu -> Build Solution (or Build [Project Name]) to compile the project.
You may find out the dll in the folder: project folder\bin\debug(or release)
Assuming you are using Visual Studio as your IDE:
- Create a new Class Library Project (File => New Project => Class Library)
- Right click new project, select "Build"
DLL file will be found in a sub-folder of the new project (likely \bin\Debug)
精彩评论