C# Tip: Raise synchronous events using Timer (and not a While loop)
When you need to fire synchronous events, don’t use a while(true) loop: use a Timer! Continue readingHow to create an API Gateway using Azure API Management
In a microservices architecture, an API Gateway hides your real endpoints. We will create one using Azure API Management Continue readingClean Code Tip: Methods should have a coherent level of abstraction
Don’t let the reader get lost in the code details! Continue readingHow to deploy .NET APIs on Azure using GitHub actions
Building APIs with .NET is easy. Deploying them on Azure is easy too, with GitHub Actions! Continue readingC# Tip: use the @ prefix when a name is reserved
C#, as every other language, has several reserved keywords. Did you know that you can use them if you use the@
prefix?
Continue reading