Inline Lamdas with LINQ in C# 13
Reduce verbosity by simplifying lambda expressions with inline syntax
Aggregating Data with LINQ
LINQ provides methods to group and aggregate data based on specific properties or conditions thanks to GroupBy and GroupJoin.
Performance increase in LINQ 7
Microsoft used Span and hardware acceleration to work with vectors in order to improve LINQ performance in .NET 7 dramatically.
The magic of LINQ
Practical LINQ: Calculate the duration of whole music album
How to return Yield Results in Async Operations
How to return Yield Results in Async Operations thanks to IAsyncEnumerable in C#
QuickSort Implementation with LINQ
How to implement QuickSort in C# with LINQ
LINQ: Query CSV files
How to query Comma Separated Value (CSV) files with LINQ
Calculate Folder/Directory Size
Get the Size of a Folder/Directory including all SubFolders with LINQ.