/// <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) { GetReportFields codeExample = new GetReportFields(); Console.WriteLine(codeExample.Description); try { ReportDefinitionReportType reportType = (ReportDefinitionReportType) Enum.Parse( typeof(ReportDefinitionReportType), "INSERT_REPORT_TYPE_HERE"); codeExample.Run(new AdWordsUser(), reportType); } 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) { GetReportFields codeExample = new GetReportFields(); Console.WriteLine(codeExample.Description); try { ReportDefinitionReportType reportType = (ReportDefinitionReportType)Enum.Parse( typeof(ReportDefinitionReportType), "INSERT_REPORT_TYPE_HERE"); codeExample.Run(new AdWordsUser(), reportType); } catch (Exception e) { Console.WriteLine("An exception occurred while running this code example. {0}", ExampleUtilities.FormatException(e)); } }