c# – ToArray()是否针对数组进行了优化?

ReSharper建议枚举IEnumerable< T>到列表或数组,因为我有“可能的IEnumerable< T>的多个枚举”.

所建议的自动代码重新分解具有内置的一些优化以查看IEnumerable< T>在调用ToArray()之前已经是一个数组.

var list = source as T[] ?? source.ToArray();

>这个优化是不是已经内置了原始的LINQ方法
>如果没有,那么不这样做的动机是什么?

解决方法

不,没有这样的优化.如果source是ICollection,那么它将被复制到新数组.这是Buffer< T>的代码. struct,由Enumerable用于创建数组:
internal Buffer(IEnumerable<TElement> source)
{    
    TElement[] array = null;
    int length = 0;
    ICollection<TElement> is2 = source as ICollection<TElement>;
    if (is2 != null)
    {
         length = is2.Count;
         if (length > 0)
         {
             array = new TElement[length]; // create new array
             is2.CopyTo(array,0); // copy items
         }
    }
    else // we don't care,because array is ICollection<TElement>

    this.items = array;
}

这里是Enumerable.ToArray()方法

public static TSource[] ToArray<TSource>(this IEnumerable<TSource> source)
{
    if (source == null)
    {
        throw Error.ArgumentNull("source");
    }
    Buffer<TSource> buffer = new Buffer<TSource>(source);
    return buffer.ToArray(); // returns items
}

相关文章

在项目中使用SharpZipLib压缩文件夹的时候,遇到如果目录较深,则压缩包中的文件夹同样比较深的问题。比...
项目需要,几十万张照片需要计算出每个照片的特征值(调用C++编写的DLL)。 业务流程:选择照片...
var array = new byte[4]; var i = Encoding.UTF8.GetBytes(100.ToString(&quot;x2&quot;));//...
其实很简单,因为Combox的Item是一个K/V的object,那么就可以把它的items转换成IEnumerable&lt;Dic...
把.net4.6安装包打包进安装程序。 关键脚本如下: 头部引用字符串对比库 !include &quot;WordFunc....
项目需求(Winform)可以批量打印某个模板,经过百度和摸索,使用iTextSharp+ZXing.NetʿreeSp...