Program.cs
资源名称:myQQ.rar [点击查看]
上传用户:lmksgs
上传日期:2007-08-12
资源大小:456k
文件大小:0k
源码类别:
Windows编程
开发平台:
Others
- using System;
- using System.Collections.Generic;
- using System.Windows.Forms;
- namespace MyQQServer
- {
- static class Program
- {
- /// <summary>
- /// 应用程序的主入口点。
- /// </summary>
- [STAThread]
- static void Main()
- {
- Application.EnableVisualStyles();
- Application.SetCompatibleTextRenderingDefault(false);
- Application.Run(new F_Server());
- }
- }
- }