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