using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
using System.Net; namespace Client
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false); if (Process.GetProcessesByName("UI").Length > )
{
MessageBox.Show("请不要重复启动程序!");
}
else
{
//程序执行代码
} }
}
}
05-11 13:51