如何从Windows服务运行控制台应用程序以及如何使用线程将参数传递给它。

时间:2018-04-12 15:48:22

标签: c# asp.net multithreading windows-services

我想使用线程从Windows服务运行一个控制台应用程序,并希望传递一个字符串作为参数。

  
    
      

线程t =新线程(新的ThreadStart(()=> ThreadFunction())); t.Start();

             

ThreadFunction(){Process p.StartInfo = new       的ProcessStartInfo( “Prog.exe”); p.Start(); }

    
  

提前致谢!

0 个答案:

没有答案