C# start programs
        Posted  
        
            by lolalola
        on Stack Overflow
        
        See other posts from Stack Overflow
        
            or by lolalola
        
        
        
        Published on 2010-05-30T17:12:19Z
        Indexed on 
            2010/05/30
            17:22 UTC
        
        
        Read the original article
        Hit count: 261
        
c#
Hi,
I'm create program and save with Visual studio: test.exe Then create created program: run.exe, with code:
using System.Diagnostics;
        Process run = new Process();
        run.StartInfo.FileName = "test.exe";
        run.Start();
Why this progran don't start first program(test.exe)?
© Stack Overflow or respective owner