The Quiet Discipline Every engineering leader learns this: stability is invisible when it works and unforgettable when it fails. Nobody writes press releases celebrating clean audits or 99.99% uptime. But lose them, and the silence breaks – outages, breaches, lawsuits. The fundamentals you...
We use collections in our code daily, but do we ever step back and consider how they perform in the context of Big O Notation benchmarks? In this post, we'll examine the different collection types in .NET to see how their behaviors relate to well-known Big O notation functions. Let's dive in!
I've been using enums in C# since the beginning of my development career. In this post, we are going to dive into how the Flags attribute can be applied to enums and also the different kinds of operations that come into play when an enum is defined as a bit flag. Let's dive in!