Program.cs
上传用户:zjazhou
上传日期:2022-03-22
资源大小:137k
文件大小:0k
源码类别:

Windows Mobile

开发平台:

C#

  1. using System;
  2. using System.Collections.Generic;
  3. using System.Windows.Forms;
  4. namespace ConnectTest
  5. {
  6.     static class Program
  7.     {
  8.         /// <summary>
  9.         /// The main entry point for the application.
  10.         /// </summary>
  11.         [MTAThread]
  12.         static void Main()
  13.         {
  14.             Application.Run(new Form1());
  15.         }
  16.     }
  17. }