Windows-Anwendung ohne Fenster starten

// Programm.cs
using System;
using System.Collections.Generic;
using System.Windows.Forms;
using SimulationSystem.Forms;

namespace MyNameSpace
{
    static class Program
    {
        /// <summary>
        /// Der Haupteinstiegspunkt für die Anwendung.
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            // in der Run-Methode kein Hauptformular angeben
            Application.Run();
        }
    }
}