Program.cs 343 B

12345678910111213141516
  1. using System;
  2. using System.Windows.Forms;
  3. namespace Archives_Center
  4. {
  5. internal static class Program
  6. {
  7. [STAThread]
  8. static void Main()
  9. {
  10. Application.EnableVisualStyles();
  11. Application.SetCompatibleTextRenderingDefault(false);
  12. Application.Run(new login());
  13. }
  14. }
  15. }