Browsing Tag
csharp
85 posts
Error Handling in Go vs. C#: Trading Exceptions for Clarity
As a C# developer, you’re familiar with the convenience of exceptions. When something goes wrong, you throw an…
JavoTK – A Better OpenTK
I’ve been working on a simpler version of OpenTK/OpenGL 4.0 for around a week now. And through countless…
Handling Evolving Requirements: Leveraging C# Params for Variable Number of Parameters
When building software, we need to be aware that the requirements will change over time. Knowing that, we…
AsyncLocal pour le partage d’informations entre classes
Quand vous écrivez des logs dans une application, vous avez sûrement une classe dédiée (voire une instance singleton)…
Task.WhenAll + Exceptions = Dor de Cabeça!
O uso de async/await em aplicações dotnet é muito comum, independente se o projeto é uma aplicação Desktop,…
Building a Digital Dungeon Master with Semantic Kernel, C#, and Azure
As a kid, I was fascinated by the possibilities of table top role playing games like Dungeons &…
A .NET TUI for Advent of Code
It’s that time of year in North America: wood stoves are burning, lights are going on houses, turkey…
What is inside Rate Limiting for .NET
The Rate Limiting API debuted in .NET 7. It implements several popular algorithms for limiting the number of…
Mastering C# Fundamentals: Do-While and For Loops
Meta Description: Learn how to efficiently control the flow of your C# programs using iteration statements like do-while…