标签: c# asp.net multithreading windows-services
我想使用线程从Windows服务运行一个控制台应用程序,并希望传递一个字符串作为参数。
线程t =新线程(新的ThreadStart(()=> ThreadFunction())); t.Start(); ThreadFunction(){Process p.StartInfo = new 的ProcessStartInfo( “Prog.exe”); p.Start(); }
线程t =新线程(新的ThreadStart(()=> ThreadFunction())); t.Start();
ThreadFunction(){Process p.StartInfo = new 的ProcessStartInfo( “Prog.exe”); p.Start(); }
提前致谢!