ldj/wince/NetworkDemo/Program.cs

26 lines
538 B
C#

using System;
using System.Linq;
using System.Collections.Generic;
using System.Windows.Forms;
namespace NetworkDemo
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[MTAThread]
static void Main()
{
try
{
Application.Run(new Form1());
}
catch (Exception ex)
{
System.Diagnostics.Process.GetCurrentProcess().Kill();
}
}
}
}