Beispiel #1
0
 public static ReadOnlySpan <byte> HexToReadOnlySpan(this string hexString)
 {
     return(HexUtility.HexToBytes(hexString));
 }
Beispiel #2
0
 public static byte[] HexToBytes(this string hexString)
 {
     return(HexUtility.HexToBytes(hexString));
 }