AI_Project_3.App.App C# (CSharp) Method

App() public method

public App ( ) : System
return System
        public App()
        {
            this.Startup += this.Application_Startup;
            this.Exit += this.Application_Exit;
            this.UnhandledException += this.Application_UnhandledException;

            InitializeComponent();
        }