This example promotes an experiment, which permanently applies all the experiment changes made to its related ad groups, criteria and ads. To create an experiment, run AddExperiment.vb. Tags: ExperimentService.mutate
Inheritance: ExampleBase
 /// <summary>
 /// Main method, to run this code example as a standalone application.
 /// </summary>
 /// <param name="args">The command line arguments.</param>
 public static void Main(string[] args)
 {
     PromoteExperiment codeExample = new PromoteExperiment();
       Console.WriteLine(codeExample.Description);
       try {
     long experimentId = long.Parse("INSERT_EXPERIMENT_ID_HERE");
     codeExample.Run(new AdWordsUser(), experimentId);
       } catch (Exception ex) {
     Console.WriteLine("An exception occurred while running this code example. {0}",
     ExampleUtilities.FormatException(ex));
       }
 }