This code example adds a sitelinks feed and associates it with a campaign. To create a campaign, run AddCampaign.cs. Tags: CampaignFeedService.mutate, FeedService.mutate, FeedItemService.mutate, Tags: FeedMappingService.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)
 {
     AddSiteLinks codeExample = new AddSiteLinks();
       Console.WriteLine(codeExample.Description);
       try {
     long campaignId = long.Parse("INSERT_CAMPAIGN_ID_HERE");
     codeExample.Run(new AdWordsUser(), campaignId);
       } catch (Exception ex) {
     Console.WriteLine("An exception occurred while running this code example. {0}",
     ExampleUtilities.FormatException(ex));
       }
 }