PreviousNext

An Introduction to Optimising Code Using Span<T>

by bill-s, 2019-02-27T05:46:05.592Z

This post continues my series about writing high-performance C# code. In this post, we’ll continue from the last two posts by introducing the Span type and refactor some existing code by converting it to a Span-based version. We’ll use Benchmark.NET to compare the methods and validate whether our changes have improved the code.

Read More