Start a Group of Processes

gbertoli3 0 Tallied Votes 97 Views Share

Start a Group of Processes

/// <summary>
        /// Starts a group of processes.
        /// </summary>
        /// <param name="Files">The group to start.</param>
        public static void StartGroup(String[] Files)
        {
            foreach (String file in Files)
            {
                System.Diagnostics.Process process = System.Diagnostics.Process.Start(file);
            }
        }