Generic Math Support in C# 11 What is Generic Math support in C# 11, and how do we take advantage of it? Let's dig in and find out! (part 3 of 3)
Overloading arithmetic, equality, and comparison operators in C# What's it mean to overload operators in C#? And what's that have to do with Generic Math in C# 11? Let's find out! (part 2 of 3)
What is a static abstract interface method in C#? What are static abstract members (new in C# 11), what can we do with them, and how are they related to Generic Math? (part 1 of 3)
Using Tuples and deconstruction to return multiple values in C# A big challenge with any language is trying to group and organize things sensibly, and returning multiple values is no exception. Let's check out Tuples and deconstruction, and see how they can help us out.
Converting a BackgroundWorker to a Task with TaskCompletionSource Sometimes the safer way to "update" old code is to leave it be and paint over it with a newer construct. Let's see how to modernize a BackgroundWorker using Tasks and TaskCompletionSource.
Named arguments in C# Named arguments in C#.. they've been around a long time, but does anyone use them? Let's check out another feature that helps tame wild code.
Local functions in C# (aka nested methods) C# 7 introduced a new tool for the belt - local functions. Let's take a look at what they are, how to use them, and why we might not want to.