Featured image of post Efficient XML Parsing in C#: A Performance Comparison

Efficient XML Parsing in C#: A Performance Comparison

I recently encountered a task at work involving reading and writing XML, which led me to explore the performance implications of different approaches. I'd like to share my findings with you.

Featured image of post .NET 8 Dependency Injection

.NET 8 Dependency Injection

Dependency Injection (DI) is a design pattern used to decouple dependencies between components (services). It achieves this by delegating the creation and management of dependencies to an external...