using System; namespace DWControllerDemo { static class Program { /// /// The main entry point for the application. /// static void Main(string[] args) { using (ControllerDemo game = new ControllerDemo()) { game.Run(); } } } }