using System; namespace Solitaire { public static class Program { [STAThread] static void Main() { using (var game = new Game1()) game.Run(); } } }