mirror of
https://e.coding.net/circlecloud/SEOKeywordSearch.git
synced 2024-10-31 22:38:49 +00:00
21 lines
480 B
C#
21 lines
480 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Windows.Forms;
|
|
|
|
namespace SEOKeywordSearch
|
|
{
|
|
static class Program
|
|
{
|
|
/// <summary>
|
|
/// 应用程序的主入口点。
|
|
/// </summary>
|
|
[STAThread]
|
|
static void Main()
|
|
{
|
|
Application.EnableVisualStyles();
|
|
Application.SetCompatibleTextRenderingDefault(false);
|
|
Application.Run(new Frm_Main());
|
|
}
|
|
}
|
|
}
|