BatchExperiment.Program.AllFinished C# (CSharp) Method

AllFinished() static private method

static private AllFinished ( IEnumerable programs ) : bool
programs IEnumerable
return bool
        static bool AllFinished(IEnumerable<Program> programs)
        {
            foreach (Program p in programs)
                if (p != null && !p.finished)
                    return false;
            return true;
        }