C#调用执行外部程序,如调用notepad
class Test
{
static void Main (string [] args)
{
System.Diagnostics.Process.Start ("notepad.exe");
}
}
C#调用执行外部程序,如调用notepad
class Test
{
static void Main (string [] args)
{
System.Diagnostics.Process.Start ("notepad.exe");
}
}