From 4fc09567c557a1110180940cca40fd7144921026 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 3 Feb 2014 10:06:44 -0600 Subject: Removes spaces. --- SuperPolarityMac/Program.cs | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 SuperPolarityMac/Program.cs (limited to 'SuperPolarityMac/Program.cs') diff --git a/SuperPolarityMac/Program.cs b/SuperPolarityMac/Program.cs new file mode 100644 index 0000000..6c3f614 --- /dev/null +++ b/SuperPolarityMac/Program.cs @@ -0,0 +1,26 @@ +#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 +} -- cgit