In the previous article we tried to understand how linq extension methods work on the example of linq Select method by revealing all its magic and writing our custom AwesomeSelect
method. Today we will understand how linq functions work along with others and talk about the difference between deferred and immediate execution in linq to objects.
Tag: LinQ
LinQ to Objects deep inside (Part I)
The best way to understand how “LinQ to objects” (in future just linq) works is to create a method by yourself. We will write the AwesomeSelect
method which has the same functionality as real linq Select method. If you are interested in then welcome under the cut.