adGroupIds
.
+ /// + /// Note: It may take up to several hours for the list to be + /// populated with members. Email addresses must be associated with a Google + /// account. For privacy purposes, the user list size will show as zero until + /// the list has at least 1000 members. After that, the size will be rounded + /// to the two most significant digits. + ///
+ ///budgetLostImpressionShare != 0
+ the application calculates the extra budget required as follows:
+
+ estimatedImpressions = impressions / impressionShare
+ clickThroughRate = clicks / impressions
+ averageCpc = clicks / cost
+ lostImpressions = budgetLostImpressionShare * estimatedImpressions
+ lostClicks = clickThroughRate * lostImpressions
+ extraBudgetNeeded = lostClicks * averageCpc
+
+For each campaign that has ```budgetLostmpressionShare = 0```, the excess budget
+ is calculated as follows:
+
+ extraBudget = budget - cost
+
+The application generates a csv report of the form
+
+ CampaignId, CampaignName, Budget, Cost, ExtraBudget, ExtraClicks, ExtraImpressions
+
+## Taking corrective action
+
+Once you have identified the campaigns that need to be fixed, you can take the
+ following corrective action:
+
+### 1. Adjust the budget
+
+The budget utilization report shows how much budget is not being utilized in a
+ campaign. You can choose to reduce its budget to a value that reflects its
+ historic performance. The report also shows the excess budget requirements of
+ campaigns that used up their allotted budget;
+ you can increase their budgets if desired. You can use the get method of
+ [CampaignService](//developers.google.com/adwords/api/docs/reference/latest/CampaignService)
+ to retrieve a campaign’s ```budgetId```, and then use
+ [BudgetService](//developers.google.com/adwords/api/docs/reference/latest/BudgetService)
+ to retrieve and update the budget.
+
+### 2. Adjust the bids
+
+A campaign may have keywords or placements that command high bids and hence are
+ draining the campaign budget very fast. Or it might have low bids that prevent
+ utilizing the campaign budget appropriately.
+
+You can adjust bids for your criteria using the mutate method of
+ [AdGroupCriterionService](//developers.google.com/adwords/api/docs/reference/latest/AdGroupCriterionService).
+ If the criterion is using a shared or flexible bidding strategy, you may have
+ to use the [BiddingStrategyService](//developers.google.com/adwords/api/docs/reference/latest/BiddingStrategyService)
+ instead. See our [guide](//developers.google.com/adwords/api/docs/guides/bidding)
+ on bidding for more details.
+
+### 3. Adjust your audience
+
+Your campaign may be targeting regions that you don’t provide services, or may
+ be targeting the wrong audience. To fix this, scan your list of keywords and
+ placements that spend your budget without ROI, and pause them. Similarly, scan
+ the locations your campaign is targeting, and add or remove location targets as
+ required. In some cases, you may want to adjust the bids for locations instead.
diff --git a/examples/AdWords/CSharp/v201710/Solutions/GetNewKeywords/GetNewKeywords.cs b/examples/AdWords/CSharp/v201710/Solutions/GetNewKeywords/GetNewKeywords.cs
new file mode 100755
index 00000000000..57a8c522a3c
--- /dev/null
+++ b/examples/AdWords/CSharp/v201710/Solutions/GetNewKeywords/GetNewKeywords.cs
@@ -0,0 +1,981 @@
+// Copyright 2017, Google Inc. All Rights Reserved.
+//
+// Licensed under the Apache License, Version 2.0 (the "License");
+// you may not use this file except in compliance with the License.
+// You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+using Google.Api.Ads.AdWords.Lib;
+using Google.Api.Ads.AdWords.Util.Reports;
+using Google.Api.Ads.AdWords.v201710;
+using Google.Api.Ads.Common.Util;
+using Google.Api.Ads.Common.Util.Reports;
+
+using System;
+using System.Collections.Generic;
+using System.IO;
+using System.Text;
+
+namespace Google.Api.Ads.AdWords.Examples.CSharp.v201710 {
+
+ ///