本文整理汇总了C#中System.Collections.Generic.List.ConvertAll方法的典型用法代码示例。如果您正苦于以下问题:C# System.Collections.Generic.List.ConvertAll方法的具体用法?C# System.Collections.Generic.List.ConvertAll怎么用?C# System.Collections.Generic.List.ConvertAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Collections.Generic.List
的用法示例。
在下文中一共展示了System.Collections.Generic.List.ConvertAll方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Index
/// <summary>
/// 信息总览
/// </summary>
/// <returns></returns>
public ActionResult Index()
{
var archives = new System.Collections.Generic.List<Yun.Item.GoodsDetail>();
int i = 1;
var d = YunClient.Instance.Execute(new Yun.Item.Request.GetItemsRequest { PageNum = i, PageSize = 40, NeedPromotion = true,Ids="18614,19367" }).Items;
if (d != null && d.Any())
{
i++;
foreach (var tt in d)
{
if (archives.All(e => tt.Id != e.Id))
{
archives.Add(tt);
}
else
{
throw new Exception();
}
}
}
var addItems = archives.ConvertAll(YunShop.Core.Model.Data.GoodsDetailInSql.ConvertGoodsInSql);
return View(addItems);
}