After two decades of building enterprise applications, I’ve witnessed the evolution from monolithic deployments to microservices, and now to serverless architectures. Azure Functions represents a fundamental shift in how we think about compute—moving from “always-on” infrastructure to truly event-driven, pay-per-execution models. This transformation isn’t just about cost savings; it’s about building systems that scale automatically […]
Read more →Tag: Azure Functions
C# 8.0: Nullable Reference Types in Practice
The “Billion Dollar Mistake”—null content—has plagued C# developers since version 1.0. NullReferenceException is the most common runtime error. C# 8.0 introduces Nullable Reference Types (NRT), a feature that moves null checking from runtime to compile time. This is not just a syntax change; it’s a fundamental shift in how we write safety-critical C# code. How […]
Read more →