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.

21 lines
509 B

2 years ago
  1. using System;
  2. using System.Windows.Forms;
  3. namespace EntityBuilder
  4. {
  5. internal static class Program
  6. {
  7. /// <summary>
  8. /// 應用程式的主要進入點。
  9. /// </summary>
  10. [STAThread]
  11. private static void Main()
  12. {
  13. Application.EnableVisualStyles();
  14. Application.SetCompatibleTextRenderingDefault(false);
  15. using (var form1 = new Form1())
  16. {
  17. Application.Run(form1);
  18. }
  19. }
  20. }
  21. }