Program.cs
上传用户:zhongfine
上传日期:2022-08-01
资源大小:2860k
文件大小:0k
源码类别:

企业管理

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Windows.Forms;
  5. namespace 人事管理系统
  6. {
  7.     static class Program
  8.     {
  9.         /// <summary>
  10.         /// 应用程序的主入口点。
  11.         /// </summary>
  12.         [STAThread]
  13.         static void Main()
  14.         {
  15.             Application.EnableVisualStyles();
  16.             Application.SetCompatibleTextRenderingDefault(false);
  17.             Application.Run(new loading());
  18.         }
  19.     }
  20. }