...

/

LINQ and Immutability

LINQ and Immutability

Learn what happens to input collections when working with LINQ.

We'll cover the following...

We’ve learned how to use the Where method. It returns a new collection with the elements that meet a condition. But what happens to the input collection when we filter it using the Where method? Let’s find out! ...