NEUTRINO_GUIs

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

Program.cs (494B)


      1 namespace NEUTRINO_GUIs
      2 {
      3     internal static class Program
      4     {
      5         /// <summary>
      6         ///  The main entry point for the application.
      7         /// </summary>
      8         [STAThread]
      9         static void Main()
     10         {
     11             // To customize application configuration such as set high DPI settings or default font,
     12             // see https://aka.ms/applicationconfiguration.
     13             ApplicationConfiguration.Initialize();
     14             Application.Run(new Form1());
     15         }
     16     }
     17 }