加入收藏 | 设为首页 | 会员中心 | 我要投稿 李大同 (https://www.lidatong.com.cn/)- 科技、建站、经验、云计算、5G、大数据,站长网!
当前位置: 首页 > 百科 > 正文

c# – Count()(linq扩展名)和List.Count之间是否有区别

发布时间:2020-12-15 08:11:51 所属栏目:百科 来源:网络整理
导读:Liststring list = new Liststring() {"a","b","c"};IEnumerablestring enumerable = list;int c1 = list.Count;int c2 = list.Count();int c3 = enumerable.Count(); 最后3个陈述之间在性能和实施方面是否存在差异?将list.Count()执行得更糟或与list.Count
List<string> list = new List<string>() {"a","b","c"};
IEnumerable<string> enumerable = list;

int c1 = list.Count;
int c2 = list.Count();
int c3 = enumerable.Count();

最后3个陈述之间在性能和实施方面是否存在差异?将list.Count()执行得更糟或与list.Count相同,并且如果引用的类型为IEnumerable< string> ?

解决方法

让我们看看Reflector:
public static int Count<TSource>(this IEnumerable<TSource> source)
{
    if (source == null)
    {
        throw Error.ArgumentNull("source");
    }
    ICollection<TSource> is2 = source as ICollection<TSource>;
    if (is2 != null)
    {
        return is2.Count;
    }
    ICollection is3 = source as ICollection;
    if (is3 != null)
    {
        return is3.Count;
    }
    int num = 0;
    using (IEnumerator<TSource> enumerator = source.GetEnumerator())
    {
        while (enumerator.MoveNext())
        {
            num++;
        }
    }
    return num;
}

因此,如果您的IEnumerable<T>实现了ICollection<T>ICollection,它将返回Count属性.

(编辑:李大同)

【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容!

    推荐文章
      热点阅读