Browsing Tag
csharp
85 posts
Brighter V10 RC2: Novos Recursos, Aperfeiçoamentos e Correções de Bugs
No artigo anterior, discuti o Brighter V10 RC 1 e suas atualizações significativas. Recentemente (10 de agosto de…
Copilot for .NET: Ask Mode vs Agent Mode and How to Use Them
AI tools are rapidly becoming essential for developers. GitHub Copilot, once just a code-suggestion engine, has evolved into…
Alocações em .NET
Reference Type é alocada na memória heap e Value Type é alocada na memória Stack. Já adianto que…
Roslyn CodeFix for updating code
Changes are inevitable when you are working with many repositories. As your applications and codebases evolve, methods are…
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á…