用.net里面的Process类可以注入线程代码如下:
引入using System.Diagnostics;命名空间
Process process = new Process();
process.StartInfo.FileName = "explorer.exe";
process.StartInfo.CreateNoWindow = true;
process.StartInfo.Arguments = "";
process.Start();
Tags:
发表评论:
◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。