List
的边界是已知的.Last()是否枚举集合? 我问这个是因为documentation说它是由Enumerable定义的(在这种情况下,它需要枚举集合)
如果它枚举了集合,那么我可以通过索引简单地访问最后一个元素(因为我们知道List的.Count),但是看起来很愚蠢的必须这样做….
解决方法 如果它是一个IEnumerable< T>而不是IList< T(具有阵列或列表将使用索引). Enumerable.Last以下列方式实现(ILSpy):public static TSource Last<TSource>(this IEnumerable<TSource> source){ if (source == null) { throw Error.ArgumentNull("source"); } IList<TSource> List = source as IList<TSource>; if (List != null) { int count = List.Count; if (count > 0) { return List[count - 1]; } } else { using (IEnumerator<TSource> enumerator = source.GetEnumerator()) { if (enumerator.MoveNext()) { TSource current; do { current = enumerator.Current; } while (enumerator.MoveNext()); return current; } } } throw Error.NoElements();}总结
以上是内存溢出为你收集整理的c# – List.Last()是否枚举集合?全部内容,希望文章能够帮你解决c# – List.Last()是否枚举集合?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)