Skip to content

Instantly share code, notes, and snippets.

View ksidirop-laerdal's full-sized avatar

Kyriakos Sidiropoulos ksidirop-laerdal

View GitHub Profile
@davepcallan
davepcallan / stringConcatenationDotnet8.cs
Last active February 15, 2025 22:50
.NET 8 simple string concatenation benchmarks
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Columns;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Jobs;
using BenchmarkDotNet.Reports;
using System;
using System.Text;
namespace Benchmarks
{