/// <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) { AddAdCustomizers codeExample = new AddAdCustomizers(); Console.WriteLine(codeExample.Description); try { long adGroupId1 = long.Parse("INSERT_ADGROUP_ID_HERE"); long adGroupId2 = long.Parse("INSERT_ADGROUP_ID_HERE"); string feedName = "INSERT_FEED_NAME_HERE"; codeExample.Run(new AdWordsUser(), adGroupId1, adGroupId2, feedName); } catch (Exception ex) { Console.WriteLine("An exception occurred while running this code example. {0}", ExampleUtilities.FormatException(ex)); } }
/// <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) { AddAdCustomizers codeExample = new AddAdCustomizers(); Console.WriteLine(codeExample.Description); try { long adGroupId1 = long.Parse("INSERT_ADGROUP_ID_HERE"); long adGroupId2 = long.Parse("INSERT_ADGROUP_ID_HERE"); string feedName = "INSERT_FEED_NAME_HERE"; codeExample.Run(new AdWordsUser(), adGroupId1, adGroupId2, feedName); } catch (Exception e) { Console.WriteLine("An exception occurred while running this code example. {0}", ExampleUtilities.FormatException(e)); } }