List <t> .Last()枚举集合吗?</t>

时间:2012-06-21 16:56:26

标签: c# .net list collections linq-to-objects

考虑到List的边界已知,.Last()是否会枚举该集合?

我问这是因为documentation表示它是由Enumerable定义的(在这种情况下 需要枚举集合)

如果它 枚举集合,那么我可以简单地通过索引访问最后一个元素(因为我们知道.Count的{​​{1}})但是它似乎很愚蠢这样做....

1 个答案:

答案 0 :(得分:11)

如果集合是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();
}