/// <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)
 {
     AddShoppingCampaign codeExample = new AddShoppingCampaign();
       Console.WriteLine(codeExample.Description);
       try {
     long budgetId = long.Parse("INSERT_BUDGET_ID_HERE");
     long merchantId = long.Parse("INSERT_MERCHANT_ID_HERE");
     codeExample.Run(new AdWordsUser(), budgetId, merchantId);
       } catch (Exception e) {
     Console.WriteLine("An exception occurred while running this code example. {0}",
     ExampleUtilities.FormatException(e));
       }
 }