Does LINQ actually perform a deep copy of the results to a different list/array/etc, or does it simply give me a list/array/etc. composed of references to the original?
feedback
|
|
It's going to depend on if (and how) you use Select to project the results. If you do not create new objects in a projection then the result will reference the same objects as the original collection. If, however, you create new objects in the project then, obviously, they will not be the same. The collection returned here will contain references to the same objects in
The collections returned in these cases will not:
In this case, it is worth pointing out that Prop1 and Prop2 of the new anonymous object - if they are reference types - will contain a reference to the same object as the original object. Only the top-level references in the collection will be different. Basically - nothing in .Net aside from serializers (as mentioned elsewhere here) will "deep" copy, unless you implement it. or
Again, it would be a mistake to assume that any "deep" copying is going on here. Of course, | |||||||||||||||
feedback
|
From Enumerable.ToArray. (Similiar text found at Enumerable.ToList)
Well, that certainly looks confusing.
From the first sentence, it is clear that no copies of items in the query are made. From the second sentence, you get a copy of the query results as a whole, but that is a shallow copy since no copies of items in the query are made. | |||
|
feedback
|
|
What it returns is very dependent on which LINQ method you are referring to. But with the exception of the few methods which explicitly copy the enumeration ( | |||||||||||||||
feedback
|