C#编译后生成哪个文件?
我想知道用C#编译文件后会生成哪种类型的文件?
i want to know that after compiling the file in C# which type of file is generated?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我想知道用C#编译文件后会生成哪种类型的文件?
i want to know that after compiling the file in C# which type of file is generated?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(2)
这必须取决于项目的类型。如果它是一个控制台应用程序,它将是一个 exe 文件。如果有多个项目和一个控制台应用程序,则其他项目将被编译为 DLL 文件。显然这不包括网络项目。
It would have to depend on the type of project. If it is a console application it will be an exe file. If there are multiple projects and one console app then the other projects will be compiled as DLL files. Obviously this doesn't include web projects.
可能 .dll 或 .exe 就是您正在寻找的答案
Probably a .dll or a .exe is the answer you are looking for