public static void SendStatsAsync(string uninstallEvent)
 {
     new Thread((ThreadStart)(() => UninstallerStats.SendStats(uninstallEvent, (Dictionary <string, string>)null)))
     {
         IsBackground = true
     }.Start();
 }
 public static void SendUninstallCompletedStats(string userComment, string uninstallReason)
 {
     UninstallerStats.SendStats(UninstallerStatsEvent.UninstallCompleted, new Dictionary <string, string>()
     {
         {
             "user_comment",
             userComment
         },
         {
             "uninstall_reason",
             uninstallReason
         }
     });
 }