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...

Find Top 5 memory consuming Processes

Programming

Using LINQ to find the Top 5 memory consuming Processes on your system.

Read more...

Looping Over a Large Collection of Data

Programming

Finding a value in a large collection of data - to loop or not to loop?

Read more...