/// <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)
 {
     UpdateExpressBusiness codeExample = new UpdateExpressBusiness();
       Console.WriteLine(codeExample.Description);
       try {
     long businessId = long.Parse("INSERT_ADWORDS_EXPRESS_BUSINESS_ID_HERE");
     codeExample.Run(new AdWordsUser(), businessId);
       } catch (Exception e) {
     Console.WriteLine("An exception occurred while running this code example. {0}",
     ExampleUtilities.FormatException(e));
       }
 }
Exemple #2
0
        /// <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)
        {
            UpdateExpressBusiness codeExample = new UpdateExpressBusiness();

            Console.WriteLine(codeExample.Description);
            try {
                long businessId = long.Parse("INSERT_ADWORDS_EXPRESS_BUSINESS_ID_HERE");
                codeExample.Run(new AdWordsUser(), businessId);
            } catch (Exception e) {
                Console.WriteLine("An exception occurred while running this code example. {0}",
                                  ExampleUtilities.FormatException(e));
            }
        }