/// <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) { DownloadCriteriaReportWithAwql codeExample = new DownloadCriteriaReportWithAwql(); Console.WriteLine(codeExample.Description); try { string fileName = "INSERT_FILE_NAME_HERE"; codeExample.Run(new AdWordsUser(), fileName); } 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) { DownloadCriteriaReportWithAwql codeExample = new DownloadCriteriaReportWithAwql(); Console.WriteLine(codeExample.Description); try { string fileName = "INSERT_FILE_NAME_HERE"; codeExample.Run(new AdWordsUser(), fileName); } catch (Exception e) { Console.WriteLine("An exception occurred while running this code example. {0}", ExampleUtilities.FormatException(e)); } }