This repository contains a collection of .NET projects designed to benchmark and compare the performance of various C# features and coding patterns, with a primary focus on:
- String manipulation techniques (e.g.,
Substringvs.Span<T>) - Memory allocation (
heap allocations) and its impact on performance - The benefits of using
Span<T>andReadOnlySpan<T>for high-performance scenarios.