using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace SamaPager_Server { internal static class Program { /// /// Punto di ingresso principale dell'applicazione. /// [STAThread] static void Main() { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); var splash = new Splash(); splash.Show(); Application.Run(); } } }