Browsing Tag
dotnet
80 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.…
CoreIdent v0.3.5: OIDC ID Tokens, Real-World Gaps, and What’s Next
CoreIdent is on a mission to make robust, standards-based authentication and identity actually developer-friendly. In Phase 3, we…
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á…
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…
Getting Started with .NET: A Hands-On Guide for Student Developers
Are you a student looking to get started with .NET development? Whether you’re new to programming or expanding…
.NET terminal komandalari
dotnet --version – komputerga o’rnatilgan dotnet versiyasini aniqlab beradi. dotnet --list-sdks – sdk versiyalarini chop etib beradi. cls…
Change a .Net Console application into an web application
I was experimenting with a small .NET console application and decided to convert it into a web application.…
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)…