Skip to content

Instantly share code, notes, and snippets.

View karenpayneoregon's full-sized avatar
🎯
Focusing

Karen Payne karenpayneoregon

🎯
Focusing
View GitHub Profile
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Running;
using System.Numerics;
BenchmarkRunner.Run(typeof(ConcatBenchmark).Assembly);
[MemoryDiagnoser]
public class ConcatBenchmark
{
private readonly int[] arr1 = new[] { 1, 2, 3, 4, 5, 0 },