Before we can start delving into LINQ, we need to first understand the underlying principles upon which it is built. LINQ is all about operations over collections, so, you’ve guessed it: we will be dealing with collections.
You already learned that of all data structures, arrays are the fastest, because they are unsorted non-generic data structures.… Read more