我正在使用以下批处理脚本代码来编译 c# 代码,但我看到的是一个黑色窗口 (csc.exe) 闪烁,我看不到创建的 exe 文件。
start /wait C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\csc.exe /out:aa.exe Program.cs
start aa.exe
pause
我想在与 Program.cs 相同的位置创建文件 aa.exe
基本上我想要的是动态编译 Program.exe 中的代码并运行它。我是
using this following references:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
using System.Threading;
using System.Net.Mail;