Using LINQ with different collection types
We all work with different types of collections in C# and I wanted to unwrap a pitfall with some ways of determining if a collection contains any items. Lets consider the following code statements var myList = new List<Guid>(Enumerable.Range(0, 10000).Select(e => Guid.NewGuid())); //List property…
Continue reading...