Program.cs
Upload User: gjb211308
Upload Date: 2022-02-24
Package Size: 36k
Code Size: 0k
Development Platform:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Windows.Forms;
  5. namespace Convert16and10
  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 Form1());
  18.         }
  19.     }
  20. }