📌  相关文章
📜  如何在 c# Visual Studio 中制作 .exe 文件 - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:01.191000             🧑  作者: Mango

代码示例1
If your program is a UI (Windows Forms, Console or WPF) project, it is created 
as soon as you click start when you BUILD your project. 
This will produce an EXECUTABLE ( The .EXE file )
  
You can find it in the Bin folder of your solutions. 
(depending on the version you have also to save the project first)

In other cases you cannot build an Exe file but get a DLL,
for instance in the case of a Dynamic Link Library.