using System; using System.Collections.Generic; using System.Windows.Forms; namespace CompleteEraser { static class Program { /// /// アプリケーションのメイン エントリ ポイントです。 /// [STAThread] static void Main(string[] args) { Application.Run(new MainForm(args)); } } }