我正在从谷歌adWords下载一些数据 我的代码如下所示:
public static FeedItem[] GetFeedItems(string _cid) { var user = CurrentOAuthUser.ConfigureUserForOAuthInstance(_cid).GetCurrentUser(); FeedItemService feedItemService = (FeedItemService)user.GetService( AdWordsService.v201502.FeedItemService); FeedItemPage page = feedItemService.query(string.Format("Select FeedItemId, " + "AttributeValues, Scheduling where PlaceholderType = 1")); return page.entries; }
现在我需要获取蓝色的信息,这个对象的字符串值。 我用foreach试过这个但没有成功。 有谁知道我是如何获得这个价值的?
答案 0 :(得分:0)
试试这个
foreach(var attribute in resultList)
foreach(var val in attribute.attributeValues)
foreach(string x in val.stringvalues)
Console.Write(x)