LINQ Reference
October 31, 2017
The benefits of using the LINQ approach rather than lots of foreach
loops are:
- Composability
- Lazy Evaluation
- Immutability
- Parallelizable
- Declarative
The functions available in LINQ can be split into four categories:
- Generator Functions.- create values out of nothing
- Statistical Functions - find out stats about the data (count, any that …