Files
NewsCrawler/Program.cs
mjjo af820d1f2c - 키워드 검색, 종목 찾기 추가
- 거부종목, 중복종목, 수동종목 추가
2016-12-01 08:54:33 +09:00

23 lines
437 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace NewsCrawler
{
static class Program
{
/// <summary>
/// The main entry point for the application.
/// </summary>
[STAThread]
static void Main()
{
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new NewsForm());
}
}
}