IList添加Find(delegate)方法
2014-09-11来源:易贤网

/// <summary>

/// Find data in IList<T>

/// </summary>

public static T Find<T>(System.Collections.Generic.IList<T> list, Predicate<T> match)

{

if (list != null && list.Count > 0)

{

foreach (T obj in list)

{

if (match(obj))

{

return obj;

}

}

}

return default(T);

}

IList<>居然没有这个方法了,只好自己参考List<>.Find写了一个.

Utils.Find(list, delegate(Test item){

return Item.Id == testId;

}

更多信息请查看IT技术专栏

2025公考·省考培训课程试听预约报名

  • 报班类型
  • 姓名
  • 手机号
  • 验证码
推荐信息