code: public static class EnumerableExtensions
{ public static T Find<T>(this IEnumerable<T> enumerable, Predicate<T> match)
{ return enumerable.Find(match);
}
}调用:ErpDic.Value.AsParallel().Find(x => x.code == code)ErpDic是个 private Lazy<List<sys_dict_common>> ErpDic;为什么这个 扩展方法find 进入了无限递归呢?不明白。
- 2 回答
- 0 关注
- 750 浏览
添加回答
举报
0/150
提交
取消