/// <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) {
   GetProductServices codeExample = new GetProductServices();
   Console.WriteLine(codeExample.Description);
   try {
     string productServiceSuggestion = "INSERT_PRODUCT_SERVICE_SUGGESTION_HERE";
     string localeText = "INSERT_LOCALE_TEXT_HERE";
     codeExample.Run(new AdWordsUser(), productServiceSuggestion, localeText);
   } 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)
        {
            GetProductServices codeExample = new GetProductServices();

            Console.WriteLine(codeExample.Description);
            try {
                string productServiceSuggestion = "INSERT_PRODUCT_SERVICE_SUGGESTION_HERE";
                string localeText = "INSERT_LOCALE_TEXT_HERE";
                codeExample.Run(new AdWordsUser(), productServiceSuggestion, localeText);
            } catch (Exception e) {
                Console.WriteLine("An exception occurred while running this code example. {0}",
                                  ExampleUtilities.FormatException(e));
            }
        }