Browsing Tag
csharp
71 posts
Introducing Jawbone Sockets
Hi! Sorry I’m so wildly inconsistent about blogging. I’ve just been hard at work on a lot of…
🧠 Backing Fields in C#: What They Are and Why You Should Care
As a C# developer, you’ve probably written something like this: public string Name { get; set; } Short.…
How to Manage Departments and Users in C# EF Core
Introduction When working with Entity Framework Core (EF Core) in C#, managing relationships between entities is crucial. In…
Switch Case in C# 8.0 and Later: What’s New and Improved?
Switch Case in C Introduction The switch case in C# has been a staple of control flow since…
Developing your easy alternative to the MediatR library in C#
In recent weeks, there has been a rumor that the famous MediatR library, widely used by the C#/.NET…
Primeiros testes unitários em C# com xUnit (parte 1)
Se você começou na programação há pouco tempo e está procurando aprender sobre testes unitários, saiba que está…
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)…