Open rcollette opened 3 years ago
You might want to take a look at HexConverter.ToString() for some inspiration.. It's an internal class that does handle lower case byte[] to hex string conversion. It's going to be a bunch faster than a string formatting loop.
Hi, can you please give a reference to this class and usage?
https://github.com/dotnet/runtime/blob/main/src/libraries/Common/src/System/HexConverter.cs#L168
You might want to take a look at HexConverter.ToString() for some inspiration.. It's an internal class that does handle lower case byte[] to hex string conversion. It's going to be a bunch faster than a string formatting loop.