show/hide this revision's text 3 fix code sample, refine answer based on testing

Using probably isn't doing what you want to here since Dispose() gets called as soon as p goes out of scope. This may abort doesn't shut down the process before it has a chance to do anything, but I haven't tested that. (tested).

Counter-intuitively, for a Process, Close() only releases resources but leaves the program running. CloseMainWindow() can work for some processes, and Kill() will work to kill any process. Both CloseMainWindow() and Kill() can throw exceptions, so be careful if you're using them in a finally block.

To finish, here's some code that waits for processes to finish . Although you should probably test it firstbut doesn't kill off the processes when an exception occurs. I'm not saying it's better than Orion Edwards, just different.

// note many properties are unavailable after process exits if//if (!p.HasExited ) // If you want to processes will still be running // but CloseMainWindow() or Kill() process instead, wrap in try{} p.Close(); can throw exceptions

I didn't bother Kill()'ing off the processes because the code starts get even uglier. Read the msdn documentation for more information.

show/hide this revision's text 2 improved code sample

For reference: The using keyword for IDisposable objects:

using(Writer writer = new Writer())
{
    writer.Write("Hello");
}

is just compiler syntax. What it compiles down to is:

Writer writer = null;
try
{
    writer = new Writer();
    writer.Write("Hello");
}
finally
{
    if( writer != null)
    {
        ((IDisposable)writer).Dispose();
    }
}

using is a bit better since the compiler prevents you from reassigning the writer reference inside the using block.

The framework guidelines Section 9.3.1 p. 256 state:

CONSIDER providing method Close(), in addition to the Dispose(), if close is standard terminology in the area.


Is there a reason for


In your code example, the outer try-catch , or is it for the using? If it's just for the using block, it's unnecessary (see above).

Using probably isn't doing what you want to here since Dispose() gets called as soon as p goes out of scope. This probably aborts may abort the process before it has a chance to do anything, but I haven't tested that.

Processes are independent, so unless you call p.WaitForExit() they spin off and do their own thing completely independent of your program.

To finish, here's some code that waits for processes to finish. Although you should probably test it first. I'm not saying it's better than Orion Edwards, just different.

List<System.Diagnostics.Process> processList = new List<System.Diagnostics.Process>();

try
{
    foreach (string command in Commands)
    {
        processList.Add(System.Diagnostics.Process.Start(command));
    }

    // loop until all spawned processes Exit normally.
    while (processList.Any())
    {
        System.Threading.Thread.Sleep(1000); // wait and see.
        List<System.Diagnostics.Process> finished = (from o in processList
                                                     where o.HasExited
                                                     select o).ToList();

        processList = processList.Except(finished).ToList();
        foreach (var p in finished)
        {
            // could inspect exit code and exit time.
            p.Close();
        }
    }
}
catch (Exception ex)
{
    // log the exception
    throw;
}
finally
{
    foreach (var p in processList)
    {
        if (p != null)
        {
            if( !p.HasExited )
            {
                // If you want to Kill() process instead, wrap in try{}
                p.Close();
            }
            p.Dispose();
        }
    }
}
show/hide this revision's text 1

For reference: The using keyword for IDisposable objects:

using(Writer writer = new Writer())
{
    writer.Write("Hello");
}

is just compiler syntax. What it compiles down to is:

Writer writer = null;
try
{
    writer = new Writer();
    writer.Write("Hello");
}
finally
{
    if( writer != null)
    {
        ((IDisposable)writer).Dispose();
    }
}

using is a bit better since the compiler prevents you from reassigning the writer reference inside the using block.

The framework guidelines Section 9.3.1 p. 256 state:

CONSIDER providing method Close(), in addition to the Dispose(), if close is standard terminology in the area.


Is there a reason for the outer try-catch, or is it for the using? If it's just for the using block, it's unnecessary (see above). Using probably isn't doing what you want to here since Dispose() gets called as soon as p goes out of scope. This probably aborts the process before it has a chance to do anything, but I haven't tested that.

Processes are independent, so unless you call p.WaitForExit() they spin off and do their own thing.

To finish, here's some code that waits for processes to finish. Although you should probably test it first. I'm not saying it's better than Orion Edwards, just different.

List<System.Diagnostics.Process> processList = new List<System.Diagnostics.Process>();

try
{
    foreach (string command in Commands)
    {
        processList.Add(System.Diagnostics.Process.Start(command));
    }

    while (processList.Any())
    {
        System.Threading.Thread.Sleep(1000); // wait and see.
        List<System.Diagnostics.Process> finished = (from o in processList
                                                     where o.HasExited
                                                     select o).ToList();

        processList = processList.Except(finished).ToList();
        foreach (var p in finished)
        {
            p.Close();
        }
    }
}
catch (Exception ex)
{
    // log the exception
    throw;
}
finally
{
    foreach (var p in processList)
    {
        if (p != null)
            p.Dispose();
    }
}