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