private void Application_Startup(object sender, StartupEventArgs e)
        {
            const int team = 1039;

            NTUtil.StartMDNSDash(team);
            //Or use roborio ip address

            //local host
            //NTUtil.StartIPDash("127.0.0.1");
        }
 private void Application_Exit(object sender, ExitEventArgs e)
 {
     NTUtil.Shutdown();
 }