Files
upper-limit-crawler/Program.cs
2016-08-02 02:03:22 +09:00

31 lines
580 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace upper_limit_crawler
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
try
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new MainForm());
}
catch(Exception e)
{
Console.WriteLine(e.ToString());
}
}
}
}