在c#中创建dll文件

发布于 2024-10-27 01:27:15 字数 25 浏览 1 评论 0原文

如何在 C# 中创建 dll 文件?

How can I create a dll file in C#?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

溺ぐ爱和你が 2024-11-03 01:27:15

文件菜单->新项目->选择您的编程语言(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)

卸妝后依然美 2024-11-03 01:27:15

假设您使用 Visual Studio 作为 IDE:

  1. 创建一个新的类库项目(File => New Project => Class Library)
  2. 右键单击​​新项目,选择“Build”

DLL 文件将在新项目(可能是 \bin\Debug)

Assuming you are using Visual Studio as your IDE:

  1. Create a new Class Library Project (File => New Project => Class Library)
  2. Right click new project, select "Build"

DLL file will be found in a sub-folder of the new project (likely \bin\Debug)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文