/// <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) {
   AddExperiment codeExample = new AddExperiment();
   Console.WriteLine(codeExample.Description);
   try {
     long campaignId = long.Parse("INSERT_CAMPAIGN_ID_HERE");
     long adGroupId = long.Parse("INSERT_ADGROUP_ID_HERE");
     long criterionId = long.Parse("INSERT_CRITERION_ID_HERE");
     codeExample.Run(new AdWordsUser(), campaignId, adGroupId, criterionId);
   } catch (Exception e) {
     Console.WriteLine("An exception occurred while running this code example. {0}",
         ExampleUtilities.FormatException(e));
   }
 }
 /// <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) {
   AddExperiment codeExample = new AddExperiment();
   Console.WriteLine(codeExample.Description);
   try {
     long campaignId = long.Parse("INSERT_CAMPAIGN_ID_HERE");
     long adGroupId = long.Parse("INSERT_ADGROUP_ID_HERE");
     long criterionId = long.Parse("INSERT_CRITERION_ID_HERE");
     codeExample.Run(new AdWordsUser(), campaignId, adGroupId, criterionId);
   } catch (Exception ex) {
     Console.WriteLine("An exception occurred while running this code example. {0}",
         ExampleUtilities.FormatException(ex));
   }
 }