111,119
社区成员
发帖
与我相关
我的任务
分享
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
Execute("notepad.exe");
}
void Execute(string FileName)
{
System.Diagnostics.Process.Start(FileName);
}
}接分