kevin-montrose / Cesil

Modern CSV (De)Serializer
MIT License
65 stars 3 forks source link

Implement big endian branches in Utils.FindChar #2

Closed kevin-montrose closed 3 years ago

kevin-montrose commented 4 years ago

There are two places in Utils.FindChar(ReadOnlySpan<char>, char) where a NotImplementedException is thrown if we're on a big endian system.

The major blocker here is some way to actually test the code.

kevin-montrose commented 3 years ago

This was fixed in #49 by switching to .NET 5 built-ins.