在c#中创建dll文件
如何在 C# 中创建 dll 文件?
How can I create a dll file in C#?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
如何在 C# 中创建 dll 文件?
How can I create a dll file in C#?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
文件菜单->新项目->选择您的编程语言(Visual C#/VB 等)->窗口 ->班级图书馆。
创建项目后,使用“构建”菜单->“构建”。构建解决方案(或构建[项目名称])来编译项目。
您可以在以下文件夹中找到该dll:项目文件夹\bin\debug(或release)
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)
假设您使用 Visual Studio 作为 IDE:
DLL 文件将在新项目(可能是 \bin\Debug)
Assuming you are using Visual Studio as your IDE:
DLL file will be found in a sub-folder of the new project (likely \bin\Debug)