Posts
All the articles I've posted.
Catching async void exceptions in C#
Published: at 07:29 PMOne of the big reasons to avoid `async void` methods is that exception control flow statements don't work... so it can crash your whole application. But what if we could catch those exceptions? 🥷🏻
JavaScript Envy in C# - Duck Typing
Published: at 12:31 PMThe second post in a series about things that you can do in JavaScript but that are not so easy in C#. This post dives into duck typing... 🦆
JavaScript Envy in C# - Dynamic Properties
Published: at 03:22 PMThe first in a series about things that you can do in JavaScript which are not so easy in C#. In this post we explore how properties and methods can be added dynamically to JS objects... and how to hack C# to do the same 🥷🏻