PreviousNext

I knew the Span<T> stuff was supposed to be fast, but this is ridiculous!

by bill-s, 2018-07-18T05:58:25.382Z

I have a program that parses data from both delimited files and Excel spreadsheets. I was trying out Span to speed up parsing the delimited files, but the ref struct restrictions mean I can't just hide the two different file formats behind an interface (without the small added overhead of repeatedly pulling Spans from Memory).

Read More