Is there an allocation free method to convert a hex string into the corresponding bytes without allocation? I already have a Span<byte> as the destination, but
Convert.FromHexString(...)
Convert.FromHexString(...)
insists on returning a newly allocated byte array.