AHRSInterface.Program.Main C# (CSharp) Method

Main() private method

private Main ( ) : void
return void
        static void Main()
        {
            Application.SetCompatibleTextRenderingDefault(false);

               /* Form_3Dcuboid form_3DcuboidA = new Form_3Dcuboid();
            //Form_3Dcuboid form_3DcuboidA = new Form_3Dcuboid(new string[] { "RightInv.png", "LeftInv.png", "BackInv.png", "FrontInv.png", "TopInv.png", "BottomInv.png" });
            form_3DcuboidA.Text += " A";
            BackgroundWorker backgroundWorkerA = new BackgroundWorker();

            backgroundWorkerA.DoWork += new DoWorkEventHandler(delegate { form_3DcuboidA.ShowDialog(); });

            backgroundWorkerA.RunWorkerAsync();

            float[] num = new float[9] { 1, 0, 0, 1, 0, 0, 1, 0, 2 };

            form_3DcuboidA.RotationMatrix = num;*/

            Application.EnableVisualStyles();
            Application.Run(new AHRSInterface());
        }
Program