DailyDrop

Separating pinned documents

Pinned documents in Visual Studio can be separated for better organization


Read more...


Soft deletes with EF global filters

How EF Core global filters can be used to simplify soft deletes


Read more...


Goto and switch statements

Using goto statements with switch statements


Read more...


String interning in C#

How interning reuses memory for strings of same value


Read more...


Line breaks in string interpolation

Line breaks allowed in interpolation expressions with C#11


Read more...


Creating a task in a task

Exploring what happens when creating a task from within a task


Read more...


Chaining null-coalescing operator

Looking into how the null-coalescing operator can be chained together


Read more...


Executing code before Main

Exploring the ways code can be execute before the Main method is called


Read more...


Accessing private variables

In certain scenarios private variables can be accessed externally


Read more...


Using Partitioner to improve parallel processing

How chunking parallel tasks with Partitioner can improve performance


Read more...