AI_Project_3.App.App C# (CSharp) 메소드

App() 공개 메소드

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

            InitializeComponent();
        }