This code example updates the bid of a placement. To get placement, run GetPlacements.cs. Tags: AdGroupCriterionService.mutate
Inheritance: ExampleBase
 /// <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)
 {
     UpdatePlacement codeExample = new UpdatePlacement();
       Console.WriteLine(codeExample.Description);
       try {
     long adGroupId = long.Parse("INSERT_ADGROUP_ID_HERE");
     long placementId = long.Parse("INSERT_PLACEMENT_ID_HERE");
     codeExample.Run(new AdWordsUser(), adGroupId, placementId);
       } catch (Exception ex) {
     Console.WriteLine("An exception occurred while running this code example. {0}",
     ExampleUtilities.FormatException(ex));
       }
 }