using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows.Forms; namespace Mesnac.PlugIn.MCProject { class Program { [STAThreadAttribute] static void Main(string[] args) { FrmMCProject frm = new FrmMCProject(); System.Windows.Forms.Application.Run(frm); } } }