c# – List.Last()是否枚举集合?

前端之家收集整理的这篇文章主要介绍了c# – List.Last()是否枚举集合?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
考虑到 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();
}
原文链接:https://www.f2er.com/csharp/97040.html

猜你在找的C#相关文章