You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
485 B

  1. namespace test
  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. }