예제 #1
0
 public static void Restart()
 {
     try
     {
         UpdateSystem.RestartApplication();
     }
     catch (Exception ex)
     {
         PremadeDialogs.GenericError(ex);
     }
 }
예제 #2
0
 public static void Restart()
 {
     try
     {
         IsRestarting = true;
         UpdateSystem.RestartApplication();
     }
     catch (Exception ex)
     {
         PremadeDialogs.GenericError(ex);
         IsRestarting = false;
     }
 }