Newer
Older
NVTyping / WindowsFormsApplication1 / Program.cs
@U-KWANSEI\ftp67940 U-KWANSEI\ftp67940 on 10 Oct 2017 560 bytes initial release
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace NVTest
{
    static class Program
    {
        /// <summary>
        /// アプリケーションのメイン エントリ ポイントです。
        /// </summary>
        [STAThread]
        static void Main()
        {
            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new NVType());
        }
    }
}