Async Lazy In C# – With Great Power Comes Great Responsibility
In C#, how can we balance asynchrony and laziness? Is there such a thing as async lazy? Let’s explore our options built into dotnet!
In C#, how can we balance asynchrony and laziness? Is there such a thing as async lazy? Let’s explore our options built into dotnet!
In Dev Leader Weekly, we’ll explore thought-provoking ideas, code examples, and highlight content from the week to help you excel as a software engineer.
Exceptions and exception handling are a core part of C# and many other programming languages. But what If we didn’t need to be throwing them?
In this newsletter, we’ll explore thought-provoking ideas, code examples, and highlight some content from the week to help you excel as a software engineer.
What Is Dev Leader Weekly Newsletter?This is my FREE newsletter that I send out every Saturday morning directly to your inbox! I try to include the following in every issue,…
The facade pattern is useful for hiding complexity by moving dependencies behind an API. Let’s dive into the facade design pattern in C# in this article!
I've been making it my mission more recently to try and reduce the barriers for people that want to get started with programming. If you're just getting started out, it…
Dealing with async EventHandlers in C# can be very problematic. async void is a pattern cause headaches with exceptions. Check out this simple solution!