Run() public method

Runs the code example.
public Run ( Google.Api.Ads.AdWords.Lib.AdWordsUser user, ReportDefinitionReportType reportType ) : void
user Google.Api.Ads.AdWords.Lib.AdWordsUser The AdWords user.
reportType ReportDefinitionReportType The report type to be run.
return void
 /// <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 ex) {
     Console.WriteLine("An exception occurred while running this code example. {0}",
     ExampleUtilities.FormatException(ex));
       }
 }