mirror of
https://e.coding.net/circlecloud/SEOKeywordSearch.git
synced 2024-11-15 00:58:49 +00:00
be29882c7d
Signed-off-by: j502647092 <jtb1@163.com>
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());
|
|
}
|
|
}
|
|
}
|