Run() public method

Runs the code example.
public Run ( Google.Api.Ads.AdWords.Lib.AdWordsUser user, long adGroupId, long keywordId ) : void
user Google.Api.Ads.AdWords.Lib.AdWordsUser The AdWords user.
adGroupId long Id of the ad group for which keyword bid /// simulations are retrieved.
keywordId long Id of the keyword for which bid simulations are /// retrieved.
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)
 {
     GetKeywordBidSimulations codeExample = new GetKeywordBidSimulations();
       Console.WriteLine(codeExample.Description);
       try {
     long adGroupId = long.Parse("INSERT_ADGROUP_ID_HERE");
     long keywordId = long.Parse("INSERT_KEYWORD_ID_HERE");
     codeExample.Run(new AdWordsUser(), adGroupId, keywordId);
       } catch (Exception ex) {
     Console.WriteLine("An exception occurred while running this code example. {0}",
     ExampleUtilities.FormatException(ex));
       }
 }