BiomePainter.Program.Main C# (CSharp) Method

Main() private method

private Main ( String args ) : void
args String
return void
        static void Main(String[] args)
        {
            AppDomain.CurrentDomain.UnhandledException += UnhandledException;
            Application.ThreadException += ThreadException;

            Application.EnableVisualStyles();
            Application.SetCompatibleTextRenderingDefault(false);
            Application.Run(new Form1(args));
        }