Inline Lamdas with LINQ in C# 13

Programming

Reduce verbosity by simplifying lambda expressions with inline syntax

Read more...

Aggregating Data with LINQ

Programming

LINQ provides methods to group and aggregate data based on specific properties or conditions thanks to GroupBy and GroupJoin.

Read more...

Performance increase in LINQ 7

Programming

Microsoft used Span and hardware acceleration to work with vectors in order to improve LINQ performance in .NET 7 dramatically.

Read more...

The magic of LINQ

Programming

Practical LINQ: Calculate the duration of whole music album

Read more...

How to return Yield Results in Async Operations

Programming

How to return Yield Results in Async Operations thanks to IAsyncEnumerable in C#

Read more...

Conditional LINQ clauses

Programming

How to Conditionally apply LINQ Clauses

Read more...

QuickSort Implementation with LINQ

Programming

How to implement QuickSort in C# with LINQ

Read more...

LINQ: Query CSV files

Programming

How to query Comma Separated Value (CSV) files with LINQ

Read more...

Replace ForEach Loop with LINQ

Programming

How-to replace a foreach Loop with LINQ

Read more...

Calculate Folder/Directory Size

Programming

Get the Size of a Folder/Directory including all SubFolders with LINQ.

Read more...