#region Using Statements using System; using System.Collections.Generic; using System.Linq; #endregion namespace SuperPolarity { static class Program { private static SuperPolarity superPolarity; /// /// The main entry point for the application. /// [STAThread] static void Main () { superPolarity = new SuperPolarity (); superPolarity.Run (); } } }