Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/321.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# 如何将字节数组转换为十六进制字符串,反之亦然?_C#_Arrays_Hex - Fatal编程技术网

C# 如何将字节数组转换为十六进制字符串,反之亦然?

C# 如何将字节数组转换为十六进制字符串,反之亦然?,c#,arrays,hex,C#,Arrays,Hex,如何将字节数组转换为十六进制字符串,反之亦然 公共静态字符串ByteArrayToString(字节[]ba) { StringBuilder十六进制=新StringBuilder(ba.Length*2); foreach(ba中的字节b) 十六进制格式(“{0:x2}”,b); 返回hex.ToString(); } 或: 公共静态字符串ByteArrayToString(字节[]ba) { 返回BitConverter.ToString(ba).替换(“-”,”); } 例如,有更多的

如何将字节数组转换为十六进制字符串,反之亦然

公共静态字符串ByteArrayToString(字节[]ba)
{
StringBuilder十六进制=新StringBuilder(ba.Length*2);
foreach(ba中的字节b)
十六进制格式(“{0:x2}”,b);
返回hex.ToString();
}
或:

公共静态字符串ByteArrayToString(字节[]ba)
{
返回BitConverter.ToString(ba).替换(“-”,”);
}
例如,有更多的变体

反向转换如下所示:

公共静态字节[]StringToByteArray(字符串十六进制)
{
int numbercars=十六进制长度;
字节[]字节=新字节[numbercars/2];
对于(int i=0;i

使用
子字符串
是与
Convert.ToByte
结合使用的最佳选择。有关更多信息,请参阅。如果需要更好的性能,必须避免
Convert.ToByte
,然后才能删除
子字符串

扩展方法(免责声明:完全未测试的代码,顺便说一下…):


等等。。使用其中一种(最后一种是字符串上的扩展方法)。

您可以使用BitConverter.ToString方法:

byte[] bytes = {0, 1, 2, 4, 8, 16, 32, 64, 128, 256}
Console.WriteLine( BitConverter.ToString(bytes));
输出:

00-01-02-04-08-10-20-40-80-FF


更多信息:

如果您想要比
位转换器更灵活,但又不想要那些笨重的90年代风格的显式循环,那么您可以:

String.Join(String.Empty, Array.ConvertAll(bytes, x => x.ToString("X2")));
或者,如果您使用的是.NET 4.0:

String.Concat(Array.ConvertAll(bytes, x => x.ToString("X2")));
(后者摘自原始帖子的评论。)

性能分析 注:截至2015年8月20日的新领导

我通过一些粗略的
Stopwatch
性能测试,运行了各种转换方法,运行了一个随机语句(n=611000次迭代),运行了一个古腾堡项目文本(n=1238957150次迭代)。以下是结果,大致从最快到最慢。所有测量值均以刻度()表示,所有相关注释均与[最慢的]
StringBuilder
实现进行比较。有关所使用的代码,请参阅下面的或我现在维护运行此程序的代码的地方

免责声明 警告:不要依赖这些统计数据来做任何具体的事情;它们只是样本数据的样本运行。如果您确实需要一流的性能,请在代表您的生产需求的环境中测试这些方法,并使用代表您将使用的数据

结果
  • (由添加到测试回购中)
    • 正文:4727.85(105.2X)
    • 句子:0.28(99.7X)
    • 文字:10853.96(快45.8倍)
    • 句子:0.65(快42.7倍)
    • 文字:12967.69(快38.4倍)
    • 句子:0.73(快37.9倍)
    • 文本:16856.64(快29.5倍)
    • 句子:0.70(快39.5倍)
    • 文字:23201.23(快21.4倍)
    • 句子:1.24(快22.3倍)
    • 文字:23879.41(快20.8倍)
    • 句子:1.15(快23.9倍)
    • 文字:113269.34(快4.4倍)
    • 句子:9.98(快2.8倍)
    • 文字:178601.39(快2.8倍)
    • 句子:10.68(快2.6倍)
    • 文字:308805.38(快2.4倍)
    • 句子:16.89(快2.4倍)
    • 文字:352828.20(快2.1倍)
    • 句子:16.87(快2.4倍)
    • 文字:675451.57(快1.1倍)
    • 句子:17.95(快2.2倍)
    • 文本:752078.70(快1.0X)
    • 句子:18.28(快2.2倍)
    • 文本:672115.77(快1.1倍)
    • 句子:36.82(快1.1倍)
    • 文本:718380.63(快1.0X)
    • 句子:39.71(快1.0X)
查找表已经领先于字节操作。基本上,有某种形式的预计算,任何给定的半字节或字节都是十六进制的。然后,当您翻阅数据时,只需查找下一部分,查看它将是什么十六进制字符串。然后以某种方式将该值添加到结果字符串输出中。长期以来,字节操作一直是性能最好的方法,一些开发人员可能更难阅读

您最好的选择仍然是找到一些具有代表性的数据,并在类似于生产的环境中进行测试。如果您有不同的内存限制,您可能更喜欢分配更少的方法,而不是更快但占用更多内存的方法

测试代码 请随意使用我使用的测试代码。此处提供了一个版本,但请随意克隆并添加您自己的方法。如果您发现任何有趣的东西或希望帮助改进它使用的测试框架,请提交一个pull请求

  • 将新的静态方法(
    Func
    )添加到/Tests/ConvertByteArrayToHexString/Test.cs
  • 将该方法的名称添加到同一类中的
    TestCandidates
    返回值中
  • 通过在同一类中切换
    GenerateTestInput
    中的注释,确保正在运行所需的输入版本,即句子或文本
  • 点击F5并等待输出(在/bin文件夹中也会生成一个HTML转储)
  • 静态字符串ByteArrayTohextStringViaStringJoinArrayConvertall(字节[]字节){
    返回string.Join(string.Empty,Array.ConvertAll(bytes,b=>b.ToString(“X2”));
    }
    静态字符串ByteArrayToHextStringViaStringConCatarrayConvertall(字节[]字节){
    返回string.Concat(Array.ConvertAll(bytes,b=>b.ToString(“X2”));
    }
    静态字符串ByteArrayToHextStringViaBitConverter(字节[]字节){
    字符串十六进制=位转换器.ToString(字节);
    返回十六进制。替换(“-”,”);
    }
    静态字符串ByteArrayToHextStringViaStringBuilderAggregateByteToString(字节[]字节){
    返回字节。聚合(新的
    
    String.Concat(Array.ConvertAll(bytes, x => x.ToString("X2")));
    
    static string ByteArrayToHexStringViaStringJoinArrayConvertAll(byte[] bytes) {
        return string.Join(string.Empty, Array.ConvertAll(bytes, b => b.ToString("X2")));
    }
    static string ByteArrayToHexStringViaStringConcatArrayConvertAll(byte[] bytes) {
        return string.Concat(Array.ConvertAll(bytes, b => b.ToString("X2")));
    }
    static string ByteArrayToHexStringViaBitConverter(byte[] bytes) {
        string hex = BitConverter.ToString(bytes);
        return hex.Replace("-", "");
    }
    static string ByteArrayToHexStringViaStringBuilderAggregateByteToString(byte[] bytes) {
        return bytes.Aggregate(new StringBuilder(bytes.Length * 2), (sb, b) => sb.Append(b.ToString("X2"))).ToString();
    }
    static string ByteArrayToHexStringViaStringBuilderForEachByteToString(byte[] bytes) {
        StringBuilder hex = new StringBuilder(bytes.Length * 2);
        foreach (byte b in bytes)
            hex.Append(b.ToString("X2"));
        return hex.ToString();
    }
    static string ByteArrayToHexStringViaStringBuilderAggregateAppendFormat(byte[] bytes) {
        return bytes.Aggregate(new StringBuilder(bytes.Length * 2), (sb, b) => sb.AppendFormat("{0:X2}", b)).ToString();
    }
    static string ByteArrayToHexStringViaStringBuilderForEachAppendFormat(byte[] bytes) {
        StringBuilder hex = new StringBuilder(bytes.Length * 2);
        foreach (byte b in bytes)
            hex.AppendFormat("{0:X2}", b);
        return hex.ToString();
    }
    static string ByteArrayToHexViaByteManipulation(byte[] bytes) {
        char[] c = new char[bytes.Length * 2];
        byte b;
        for (int i = 0; i < bytes.Length; i++) {
            b = ((byte)(bytes[i] >> 4));
            c[i * 2] = (char)(b > 9 ? b + 0x37 : b + 0x30);
            b = ((byte)(bytes[i] & 0xF));
            c[i * 2 + 1] = (char)(b > 9 ? b + 0x37 : b + 0x30);
        }
        return new string(c);
    }
    static string ByteArrayToHexViaByteManipulation2(byte[] bytes) {
        char[] c = new char[bytes.Length * 2];
        int b;
        for (int i = 0; i < bytes.Length; i++) {
            b = bytes[i] >> 4;
            c[i * 2] = (char)(55 + b + (((b - 10) >> 31) & -7));
            b = bytes[i] & 0xF;
            c[i * 2 + 1] = (char)(55 + b + (((b - 10) >> 31) & -7));
        }
        return new string(c);
    }
    static string ByteArrayToHexViaSoapHexBinary(byte[] bytes) {
        SoapHexBinary soapHexBinary = new SoapHexBinary(bytes);
        return soapHexBinary.ToString();
    }
    static string ByteArrayToHexViaLookupAndShift(byte[] bytes) {
        StringBuilder result = new StringBuilder(bytes.Length * 2);
        string hexAlphabet = "0123456789ABCDEF";
        foreach (byte b in bytes) {
            result.Append(hexAlphabet[(int)(b >> 4)]);
            result.Append(hexAlphabet[(int)(b & 0xF)]);
        }
        return result.ToString();
    }
    static readonly uint* _lookup32UnsafeP = (uint*)GCHandle.Alloc(_Lookup32, GCHandleType.Pinned).AddrOfPinnedObject();
    static string ByteArrayToHexViaLookup32UnsafeDirect(byte[] bytes) {
        var lookupP = _lookup32UnsafeP;
        var result = new string((char)0, bytes.Length * 2);
        fixed (byte* bytesP = bytes)
        fixed (char* resultP = result) {
            uint* resultP2 = (uint*)resultP;
            for (int i = 0; i < bytes.Length; i++) {
                resultP2[i] = lookupP[bytesP[i]];
            }
        }
        return result;
    }
    static uint[] _Lookup32 = Enumerable.Range(0, 255).Select(i => {
        string s = i.ToString("X2");
        return ((uint)s[0]) + ((uint)s[1] << 16);
    }).ToArray();
    static string ByteArrayToHexViaLookupPerByte(byte[] bytes) {
        var result = new char[bytes.Length * 2];
        for (int i = 0; i < bytes.Length; i++)
        {
            var val = _Lookup32[bytes[i]];
            result[2*i] = (char)val;
            result[2*i + 1] = (char) (val >> 16);
        }
        return new string(result);
    }
    static string ByteArrayToHexViaLookup(byte[] bytes) {
        string[] hexStringTable = new string[] {
            "00", "01", "02", "03", "04", "05", "06", "07", "08", "09", "0A", "0B", "0C", "0D", "0E", "0F",
            "10", "11", "12", "13", "14", "15", "16", "17", "18", "19", "1A", "1B", "1C", "1D", "1E", "1F",
            "20", "21", "22", "23", "24", "25", "26", "27", "28", "29", "2A", "2B", "2C", "2D", "2E", "2F",
            "30", "31", "32", "33", "34", "35", "36", "37", "38", "39", "3A", "3B", "3C", "3D", "3E", "3F",
            "40", "41", "42", "43", "44", "45", "46", "47", "48", "49", "4A", "4B", "4C", "4D", "4E", "4F",
            "50", "51", "52", "53", "54", "55", "56", "57", "58", "59", "5A", "5B", "5C", "5D", "5E", "5F",
            "60", "61", "62", "63", "64", "65", "66", "67", "68", "69", "6A", "6B", "6C", "6D", "6E", "6F",
            "70", "71", "72", "73", "74", "75", "76", "77", "78", "79", "7A", "7B", "7C", "7D", "7E", "7F",
            "80", "81", "82", "83", "84", "85", "86", "87", "88", "89", "8A", "8B", "8C", "8D", "8E", "8F",
            "90", "91", "92", "93", "94", "95", "96", "97", "98", "99", "9A", "9B", "9C", "9D", "9E", "9F",
            "A0", "A1", "A2", "A3", "A4", "A5", "A6", "A7", "A8", "A9", "AA", "AB", "AC", "AD", "AE", "AF",
            "B0", "B1", "B2", "B3", "B4", "B5", "B6", "B7", "B8", "B9", "BA", "BB", "BC", "BD", "BE", "BF",
            "C0", "C1", "C2", "C3", "C4", "C5", "C6", "C7", "C8", "C9", "CA", "CB", "CC", "CD", "CE", "CF",
            "D0", "D1", "D2", "D3", "D4", "D5", "D6", "D7", "D8", "D9", "DA", "DB", "DC", "DD", "DE", "DF",
            "E0", "E1", "E2", "E3", "E4", "E5", "E6", "E7", "E8", "E9", "EA", "EB", "EC", "ED", "EE", "EF",
            "F0", "F1", "F2", "F3", "F4", "F5", "F6", "F7", "F8", "F9", "FA", "FB", "FC", "FD", "FE", "FF",
        };
        StringBuilder result = new StringBuilder(bytes.Length * 2);
        foreach (byte b in bytes) {
            result.Append(hexStringTable[b]);
        }
        return result.ToString();
    }
    
    private static string ByteArrayToHex(byte[] barray)
    {
        char[] c = new char[barray.Length * 2];
        byte b;
        for (int i = 0; i < barray.Length; ++i)
        {
            b = ((byte)(barray[i] >> 4));
            c[i * 2] = (char)(b > 9 ? b + 0x37 : b + 0x30);
            b = ((byte)(barray[i] & 0xF));
            c[i * 2 + 1] = (char)(b > 9 ? b + 0x37 : b + 0x30);
        }
        return new string(c);
    }
    
    public static String ByteArrayToSQLHexString(byte[] Source)
    {
        return = "0x" + BitConverter.ToString(Source).Replace("-", "");
    }
    
    private byte[] HexStringToByteArray(string hexString)
    {
        int hexStringLength = hexString.Length;
        byte[] b = new byte[hexStringLength / 2];
        for (int i = 0; i < hexStringLength; i += 2)
        {
            int topChar = (hexString[i] > 0x40 ? hexString[i] - 0x37 : hexString[i] - 0x30) << 4;
            int bottomChar = hexString[i + 1] > 0x40 ? hexString[i + 1] - 0x37 : hexString[i + 1] - 0x30;
            b[i / 2] = Convert.ToByte(topChar + bottomChar);
        }
        return b;
    }
    
    using System.Runtime.Remoting.Metadata.W3cXsd2001;
    
    public static byte[] GetStringToBytes(string value)
    {
        SoapHexBinary shb = SoapHexBinary.Parse(value);
        return shb.Value;
    }
    
    public static string GetBytesToString(byte[] value)
    {
        SoapHexBinary shb = new SoapHexBinary(value);
        return shb.ToString();
    }
    
    public static byte[] StringToByteArray2(string hex)
    {
        byte[] bytes = new byte[hex.Length/2];
        int bl = bytes.Length;
        for (int i = 0; i < bl; ++i)
        {
            bytes[i] = (byte)((hex[2 * i] > 'F' ? hex[2 * i] - 0x57 : hex[2 * i] > '9' ? hex[2 * i] - 0x37 : hex[2 * i] - 0x30) << 4);
            bytes[i] |= (byte)(hex[2 * i + 1] > 'F' ? hex[2 * i + 1] - 0x57 : hex[2 * i + 1] > '9' ? hex[2 * i + 1] - 0x37 : hex[2 * i + 1] - 0x30);
        }
        return bytes;
    }
    
      public static string ToHexString(byte[] data) {
        byte b;
        int i, j, k;
        int l = data.Length;
        char[] r = new char[l * 2];
        for (i = 0, j = 0; i < l; ++i) {
          b = data[i];
          k = b >> 4;
          r[j++] = (char)(k > 9 ? k + 0x37 : k + 0x30);
          k = b & 15;
          r[j++] = (char)(k > 9 ? k + 0x37 : k + 0x30);
        }
        return new string(r);
      }
    
    public static string ByteArrayToString(byte[] ba) 
    {
        // Concatenate the bytes into one long string
        return ba.Aggregate(new StringBuilder(32),
                                (sb, b) => sb.Append(b.ToString("X2"))
                                ).ToString();
    }
    
    public static string ByteArrayToString(byte[] ba)   
    {   
       StringBuilder hex = new StringBuilder(ba.Length * 2);   
    
       for(int i=0; i < ba.Length; i++)       // <-- Use for loop is faster than foreach   
           hex.Append(ba[i].ToString("X2"));   // <-- ToString is faster than AppendFormat   
    
       return hex.ToString();   
    } 
    
    string hex = BitConverter.ToString(YourByteArray).Replace("-", "");
    
    Dim hex As String = BitConverter.ToString(YourByteArray).Replace("-", "")
    
    private static readonly byte[] LookupTable = new byte[] {
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
    };
    
    private static byte Lookup(char c)
    {
      var b = LookupTable[c];
      if (b == 255)
        throw new IOException("Expected a hex character, got " + c);
      return b;
    }
    
    public static byte ToByte(char[] chars, int offset)
    {
      return (byte)(Lookup(chars[offset]) << 4 | Lookup(chars[offset + 1]));
    }
    
    private static readonly char[][] LookupTableUpper;
    private static readonly char[][] LookupTableLower;
    
    static Hex()
    {
      LookupTableLower = new char[256][];
      LookupTableUpper = new char[256][];
      for (var i = 0; i < 256; i++)
      {
        LookupTableLower[i] = i.ToString("x2").ToCharArray();
        LookupTableUpper[i] = i.ToString("X2").ToCharArray();
      }
    }
    
    public static char[] ToCharLower(byte[] b, int bOffset)
    {
      return LookupTableLower[b[bOffset]];
    }
    
    public static char[] ToCharUpper(byte[] b, int bOffset)
    {
      return LookupTableUpper[b[bOffset]];
    }
    
    StringBuilderToStringFromBytes:   106148
    BitConverterToStringFromBytes:     15783
    ArrayConvertAllToStringFromBytes:  54290
    ByteManipulationToCharArray:        8444
    TableBasedToCharArray:              5651 *
    
    private static readonly byte[] LookupTableLow = new byte[] {
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0x0A, 0x0B, 0x0C, 0x0D, 0x0E, 0x0F, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
    };
    
    private static readonly byte[] LookupTableHigh = new byte[] {
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0x00, 0x10, 0x20, 0x30, 0x40, 0x50, 0x60, 0x70, 0x80, 0x90, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xA0, 0xB0, 0xC0, 0xD0, 0xE0, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xA0, 0xB0, 0xC0, 0xD0, 0xE0, 0xF0, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
      0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF
    };
    
    private static byte LookupLow(char c)
    {
      var b = LookupTableLow[c];
      if (b == 255)
        throw new IOException("Expected a hex character, got " + c);
      return b;
    }
    
    private static byte LookupHigh(char c)
    {
      var b = LookupTableHigh[c];
      if (b == 255)
        throw new IOException("Expected a hex character, got " + c);
      return b;
    }
    
    public static byte ToByte(char[] chars, int offset)
    {
      return (byte)(LookupHigh(chars[offset++]) | LookupLow(chars[offset]));
    }
    
    public static byte[] FromHexString(string src)
    {
        if (String.IsNullOrEmpty(src))
            return null;
    
        int index = src.Length;
        int sz = index / 2;
        if (sz <= 0)
            return null;
    
        byte[] rc = new byte[sz];
    
        while (--sz >= 0)
        {
            char lo = src[--index];
            char hi = src[--index];
    
            rc[sz] = (byte)(
                (
                    (hi >= '0' && hi <= '9') ? hi - '0' :
                    (hi >= 'a' && hi <= 'f') ? hi - 'a' + 10 :
                    (hi >= 'A' && hi <= 'F') ? hi - 'A' + 10 :
                    0
                )
                << 4 | 
                (
                    (lo >= '0' && lo <= '9') ? lo - '0' :
                    (lo >= 'a' && lo <= 'f') ? lo - 'a' + 10 :
                    (lo >= 'A' && lo <= 'F') ? lo - 'A' + 10 :
                    0
                )
            );
        }
    
        return rc;          
    }
    
    Give me that string:
    04c63f7842740c77e545bb0b2ade90b384f119f6ab57b680b7aa575a2f40939f
    
    Time to parse 100,000 times: 50.4192 ms
    Result as base64: BMY/eEJ0DHflRbsLKt6Qs4TxGfarV7aAt6pXWi9Ak58=
    BitConverter'd: 04-C6-3F-78-42-74-0C-77-E5-45-BB-0B-2A-DE-90-B3-84-F1-19-F6-AB-5
    7-B6-80-B7-AA-57-5A-2F-40-93-9F
    
    Accepted answer: (StringToByteArray)
    Time to parse 100000 times: 233.1264ms
    Result as base64: BMY/eEJ0DHflRbsLKt6Qs4TxGfarV7aAt6pXWi9Ak58=
    BitConverter'd: 04-C6-3F-78-42-74-0C-77-E5-45-BB-0B-2A-DE-90-B3-84-F1-19-F6-AB-5
    7-B6-80-B7-AA-57-5A-2F-40-93-9F
    
    With Mono's implementation:
    Time to parse 100000 times: 777.2544ms
    Result as base64: BMY/eEJ0DHflRbsLKt6Qs4TxGfarV7aAt6pXWi9Ak58=
    BitConverter'd: 04-C6-3F-78-42-74-0C-77-E5-45-BB-0B-2A-DE-90-B3-84-F1-19-F6-AB-5
    7-B6-80-B7-AA-57-5A-2F-40-93-9F
    
    With SoapHexBinary:
    Time to parse 100000 times: 845.1456ms
    Result as base64: BMY/eEJ0DHflRbsLKt6Qs4TxGfarV7aAt6pXWi9Ak58=
    BitConverter'd: 04-C6-3F-78-42-74-0C-77-E5-45-BB-0B-2A-DE-90-B3-84-F1-19-F6-AB-5
    7-B6-80-B7-AA-57-5A-2F-40-93-9F
    
    public static byte[] ToByteArrayFromHex(string hexString)
    {
      if (hexString.Length % 2 != 0) throw new ArgumentException("String must have an even length");
      var array = new byte[hexString.Length / 2];
      for (int i = 0; i < hexString.Length; i += 2)
      {
        array[i/2] = ByteFromTwoChars(hexString[i], hexString[i + 1]);
      }
      return array;
    }
    
    private static byte ByteFromTwoChars(char p, char p_2)
    {
      byte ret;
      if (p <= '9' && p >= '0')
      {
        ret = (byte) ((p - '0') << 4);
      }
      else if (p <= 'f' && p >= 'a')
      {
        ret = (byte) ((p - 'a' + 10) << 4);
      }
      else if (p <= 'F' && p >= 'A')
      {
        ret = (byte) ((p - 'A' + 10) << 4);
      } else throw new ArgumentException("Char is not a hex digit: " + p,"p");
    
      if (p_2 <= '9' && p_2 >= '0')
      {
        ret |= (byte) ((p_2 - '0'));
      }
      else if (p_2 <= 'f' && p_2 >= 'a')
      {
        ret |= (byte) ((p_2 - 'a' + 10));
      }
      else if (p_2 <= 'F' && p_2 >= 'A')
      {
        ret |= (byte) ((p_2 - 'A' + 10));
      } else throw new ArgumentException("Char is not a hex digit: " + p_2, "p_2");
    
      return ret;
    }
    
    static string ByteToHexBitFiddle(byte[] bytes)
    {
        char[] c = new char[bytes.Length * 2];
        int b;
        for (int i = 0; i < bytes.Length; i++) {
            b = bytes[i] >> 4;
            c[i * 2] = (char)(55 + b + (((b-10)>>31)&-7));
            b = bytes[i] & 0xF;
            c[i * 2 + 1] = (char)(55 + b + (((b-10)>>31)&-7));
        }
        return new string(c);
    }
    
    public static string ByteArrayToString2(byte[] ba)
    {
        char[] c = new char[ba.Length * 2];
        for( int i = 0; i < ba.Length * 2; ++i)
        {
            byte b = (byte)((ba[i>>1] >> 4*((i&1)^1)) & 0xF);
            c[i] = (char)(55 + b + (((b-10)>>31)&-7));
        }
        return new string( c );
    }
    
    public static string ByteArrayToString(byte[] ba)
    {
        return string.Concat( ba.SelectMany( b => new int[] { b >> 4, b & 0xF }).Select( b => (char)(55 + b + (((b-10)>>31)&-7))) );
    }
    
    public static byte[] HexStringToByteArray( string s )
    {
        byte[] ab = new byte[s.Length>>1];
        for( int i = 0; i < s.Length; i++ )
        {
            int b = s[i];
            b = (b - '0') + ((('9' - b)>>31)&-7);
            ab[i>>1] |= (byte)(b << 4*((i&1)^1));
        }
        return ab;
    }
    
    public static byte[] HexToByteUsingByteManipulation(string s)
    {
        byte[] bytes = new byte[s.Length / 2];
        for (int i = 0; i < bytes.Length; i++)
        {
            int hi = s[i*2] - 65;
            hi = hi + 10 + ((hi >> 31) & 7);
    
            int lo = s[i*2 + 1] - 65;
            lo = lo + 10 + ((lo >> 31) & 7) & 0x0f;
    
            bytes[i] = (byte) (lo | hi << 4);
        }
        return bytes;
    }
    
    static private readonly char[] hexAlphabet = new char[]
        {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
    static string ByteArrayToHexViaByteManipulation3(byte[] bytes)
    {
        char[] c = new char[bytes.Length * 2];
        byte b;
        for (int i = 0; i < bytes.Length; i++)
        {
            b = ((byte)(bytes[i] >> 4));
            c[i * 2] = hexAlphabet[b];
            b = ((byte)(bytes[i] & 0xF));
            c[i * 2 + 1] = hexAlphabet[b];
        }
        return new string(c);
    }
    
        static private readonly char[] hexAlphabet = new char[]
            {'0','1','2','3','4','5','6','7','8','9','A','B','C','D','E','F'};
        static string ByteArrayToHexViaByteManipulation4(byte[] bytes)
        {
            char[] c = new char[bytes.Length * 2];
            for (int i = 0, ptr = 0; i < bytes.Length; i++, ptr += 2)
            {
                byte b = bytes[i];
                c[ptr] = hexAlphabet[b >> 4];
                c[ptr + 1] = hexAlphabet[b & 0xF];
            }
            return new string(c);
        }
    
    public static class HexHelper
    {
        [System.Diagnostics.Contracts.Pure]
        public static string ToHex(this byte[] value)
        {
            if (value == null)
                throw new ArgumentNullException("value");
    
            const string hexAlphabet = @"0123456789ABCDEF";
    
            var chars = new char[checked(value.Length * 2)];
            unchecked
            {
                for (int i = 0; i < value.Length; i++)
                {
                    chars[i * 2] = hexAlphabet[value[i] >> 4];
                    chars[i * 2 + 1] = hexAlphabet[value[i] & 0xF];
                }
            }
            return new string(chars);
        }
    
        [System.Diagnostics.Contracts.Pure]
        public static byte[] FromHex(this string value)
        {
            if (value == null)
                throw new ArgumentNullException("value");
            if (value.Length % 2 != 0)
                throw new ArgumentException("Hexadecimal value length must be even.", "value");
    
            unchecked
            {
                byte[] result = new byte[value.Length / 2];
                for (int i = 0; i < result.Length; i++)
                {
                    // 0(48) - 9(57) -> 0 - 9
                    // A(65) - F(70) -> 10 - 15
                    int b = value[i * 2]; // High 4 bits.
                    int val = ((b - '0') + ((('9' - b) >> 31) & -7)) << 4;
                    b = value[i * 2 + 1]; // Low 4 bits.
                    val += (b - '0') + ((('9' - b) >> 31) & -7);
                    result[i] = checked((byte)val);
                }
                return result;
            }
        }
    }
    
    public static class HexUnsafeHelper
    {
        [System.Diagnostics.Contracts.Pure]
        public static unsafe string ToHex(this byte[] value)
        {
            if (value == null)
                throw new ArgumentNullException("value");
    
            const string alphabet = @"0123456789ABCDEF";
    
            string result = new string(' ', checked(value.Length * 2));
            fixed (char* alphabetPtr = alphabet)
            fixed (char* resultPtr = result)
            {
                char* ptr = resultPtr;
                unchecked
                {
                    for (int i = 0; i < value.Length; i++)
                    {
                        *ptr++ = *(alphabetPtr + (value[i] >> 4));
                        *ptr++ = *(alphabetPtr + (value[i] & 0xF));
                    }
                }
            }
            return result;
        }
    
        [System.Diagnostics.Contracts.Pure]
        public static unsafe byte[] FromHex(this string value)
        {
            if (value == null)
                throw new ArgumentNullException("value");
            if (value.Length % 2 != 0)
                throw new ArgumentException("Hexadecimal value length must be even.", "value");
    
            unchecked
            {
                byte[] result = new byte[value.Length / 2];
                fixed (char* valuePtr = value)
                {
                    char* valPtr = valuePtr;
                    for (int i = 0; i < result.Length; i++)
                    {
                        // 0(48) - 9(57) -> 0 - 9
                        // A(65) - F(70) -> 10 - 15
                        int b = *valPtr++; // High 4 bits.
                        int val = ((b - '0') + ((('9' - b) >> 31) & -7)) << 4;
                        b = *valPtr++; // Low 4 bits.
                        val += (b - '0') + ((('9' - b) >> 31) & -7);
                        result[i] = checked((byte)val);
                    }
                }
                return result;
            }
        }
    }
    
    public static String ToHex (byte[] data)
    {
        int dataLength = data.Length;
        // pre-create the stringbuilder using the length of the data * 2, precisely enough
        StringBuilder sb = new StringBuilder (dataLength * 2);
        for (int i = 0; i < dataLength; i++) {
            int b = data [i];
    
            // check using calculation over bits to see if first tuple is a letter
            // isLetter is zero if it is a digit, 1 if it is a letter
            int isLetter = (b >> 7) & ((b >> 6) | (b >> 5)) & 1;
    
            // calculate the code using a multiplication to make up the difference between
            // a digit character and an alphanumerical character
            int code = '0' + ((b >> 4) & 0xF) + isLetter * ('A' - '9' - 1);
            // now append the result, after casting the code point to a character
            sb.Append ((Char)code);
    
            // do the same with the lower (less significant) tuple
            isLetter = (b >> 3) & ((b >> 2) | (b >> 1)) & 1;
            code = '0' + (b & 0xF) + isLetter * ('A' - '9' - 1);
            sb.Append ((Char)code);
        }
        return sb.ToString ();
    }
    
    public static byte[] FromHex (String hex)
    {
    
        // pre-create the array
        int resultLength = hex.Length / 2;
        byte[] result = new byte[resultLength];
        // set validity = 0 (0 = valid, anything else is not valid)
        int validity = 0;
        int c, isLetter, value, validDigitStruct, validDigit, validLetterStruct, validLetter;
        for (int i = 0, hexOffset = 0; i < resultLength; i++, hexOffset += 2) {
            c = hex [hexOffset];
    
            // check using calculation over bits to see if first char is a letter
            // isLetter is zero if it is a digit, 1 if it is a letter (upper & lowercase)
            isLetter = (c >> 6) & 1;
    
            // calculate the tuple value using a multiplication to make up the difference between
            // a digit character and an alphanumerical character
            // minus 1 for the fact that the letters are not zero based
            value = ((c & 0xF) + isLetter * (-1 + 10)) << 4;
    
            // check validity of all the other bits
            validity |= c >> 7; // changed to >>, maybe not OK, use UInt?
    
            validDigitStruct = (c & 0x30) ^ 0x30;
            validDigit = ((c & 0x8) >> 3) * (c & 0x6);
            validity |= (isLetter ^ 1) * (validDigitStruct | validDigit);
    
            validLetterStruct = c & 0x18;
            validLetter = (((c - 1) & 0x4) >> 2) * ((c - 1) & 0x2);
            validity |= isLetter * (validLetterStruct | validLetter);
    
            // do the same with the lower (less significant) tuple
            c = hex [hexOffset + 1];
            isLetter = (c >> 6) & 1;
            value ^= (c & 0xF) + isLetter * (-1 + 10);
            result [i] = (byte)value;
    
            // check validity of all the other bits
            validity |= c >> 7; // changed to >>, maybe not OK, use UInt?
    
            validDigitStruct = (c & 0x30) ^ 0x30;
            validDigit = ((c & 0x8) >> 3) * (c & 0x6);
            validity |= (isLetter ^ 1) * (validDigitStruct | validDigit);
    
            validLetterStruct = c & 0x18;
            validLetter = (((c - 1) & 0x4) >> 2) * ((c - 1) & 0x2);
            validity |= isLetter * (validLetterStruct | validLetter);
        }
    
        if (validity != 0) {
            throw new ArgumentException ("Hexadecimal encoding incorrect for input " + hex);
        }
    
        return result;
    }
    
    private static readonly uint[] _lookup32 = CreateLookup32();
    
    private static uint[] CreateLookup32()
    {
        var result = new uint[256];
        for (int i = 0; i < 256; i++)
        {
            string s=i.ToString("X2");
            result[i] = ((uint)s[0]) + ((uint)s[1] << 16);
        }
        return result;
    }
    
    private static string ByteArrayToHexViaLookup32(byte[] bytes)
    {
        var lookup32 = _lookup32;
        var result = new char[bytes.Length * 2];
        for (int i = 0; i < bytes.Length; i++)
        {
            var val = lookup32[bytes[i]];
            result[2*i] = (char)val;
            result[2*i + 1] = (char) (val >> 16);
        }
        return new string(result);
    }
    
    private static readonly uint[] _lookup32Unsafe = CreateLookup32Unsafe();
    private static readonly uint* _lookup32UnsafeP = (uint*)GCHandle.Alloc(_lookup32Unsafe,GCHandleType.Pinned).AddrOfPinnedObject();
    
    private static uint[] CreateLookup32Unsafe()
    {
        var result = new uint[256];
        for (int i = 0; i < 256; i++)
        {
            string s=i.ToString("X2");
            if(BitConverter.IsLittleEndian)
                result[i] = ((uint)s[0]) + ((uint)s[1] << 16);
            else
                result[i] = ((uint)s[1]) + ((uint)s[0] << 16);
        }
        return result;
    }
    
    public static string ByteArrayToHexViaLookup32Unsafe(byte[] bytes)
    {
        var lookupP = _lookup32UnsafeP;
        var result = new char[bytes.Length * 2];
        fixed(byte* bytesP = bytes)
        fixed (char* resultP = result)
        {
            uint* resultP2 = (uint*)resultP;
            for (int i = 0; i < bytes.Length; i++)
            {
                resultP2[i] = lookupP[bytesP[i]];
            }
        }
        return new string(result);
    }
    
    public static string ByteArrayToHexViaLookup32UnsafeDirect(byte[] bytes)
    {
        var lookupP = _lookup32UnsafeP;
        var result = new string((char)0, bytes.Length * 2);
        fixed (byte* bytesP = bytes)
        fixed (char* resultP = result)
        {
            uint* resultP2 = (uint*)resultP;
            for (int i = 0; i < bytes.Length; i++)
            {
                resultP2[i] = lookupP[bytesP[i]];
            }
        }
        return result;
    }
    
        public static byte[] HexadecimalStringToByteArray_Original(string input)
        {
            var outputLength = input.Length / 2;
            var output = new byte[outputLength];
            for (var i = 0; i < outputLength; i++)
                output[i] = Convert.ToByte(input.Substring(i * 2, 2), 16);
            return output;
        }
    
        public static byte[] HexadecimalStringToByteArray_Rev4(string input)
        {
            var outputLength = input.Length / 2;
            var output = new byte[outputLength];
            using (var sr = new StringReader(input))
            {
                for (var i = 0; i < outputLength; i++)
                    output[i] = Convert.ToByte(new string(new char[2] { (char)sr.Read(), (char)sr.Read() }), 16);
            }
            return output;
        }
    
        public static byte[] HexadecimalStringToByteArray(string input)
        {
            var outputLength = input.Length / 2;
            var output = new byte[outputLength];
            var numeral = new char[2];
            using (var sr = new StringReader(input))
            {
                for (var i = 0; i < outputLength; i++)
                {
                    numeral[0] = (char)sr.Read();
                    numeral[1] = (char)sr.Read();
                    output[i] = Convert.ToByte(new string(numeral), 16);
                }
            }
            return output;
        }
    
        public static byte[] HexadecimalStringToByteArray(string input)
        {
            var outputLength = input.Length / 2;
            var output = new byte[outputLength];
            var numeral = new char[2];
            using (var sr = new StringReader(input))
            {
                for (var i = 0; i < outputLength; i++)
                {
                    var read = sr.Read(numeral, 0, 2);
                    Debug.Assert(read == 2);
                    output[i] = Convert.ToByte(new string(numeral), 16);
                }
            }
            return output;
        }
    
        public static byte[] HexadecimalStringToByteArray(string input)
        {
            var outputLength = input.Length / 2;
            var output = new byte[outputLength];
            var numeral = new char[2];
            for (int i = 0, j = 0; i < outputLength; i++, j += 2)
            {
                input.CopyTo(j, numeral, 0, 2);
                output[i] = Convert.ToByte(new string(numeral), 16);
            }
            return output;
        }
    
        public static byte[] HexadecimalStringToByteArray_BestEffort(string input)
        {
            var outputLength = input.Length / 2;
            var output = new byte[outputLength];
            var numeral = new char[2];
            for (int i = 0; i < outputLength; i++)
            {
                input.CopyTo(i * 2, numeral, 0, 2);
                output[i] = Convert.ToByte(new string(numeral), 16);
            }
            return output;
        }
    
    Intel(R) Core(TM) i7-3720QM CPU @ 2.60GHz
        Cores: 8
        Current Clock Speed: 2600
        Max Clock Speed: 2600
    --------------------
    Parsing hexadecimal string into an array of bytes
    --------------------
    HexadecimalStringToByteArray_Original: 7,777.09 average ticks (over 10000 runs), 1.2X
    HexadecimalStringToByteArray_BestEffort: 8,550.82 average ticks (over 10000 runs), 1.1X
    HexadecimalStringToByteArray_Rev4: 9,218.03 average ticks (over 10000 runs), 1.0X
    
    209113288F93A9AB8E474EA78D899AFDBB874355
    
        public static byte[] HexToBytes(this string hexString)        
        {
            byte[] b = new byte[hexString.Length / 2];            
            char c;
            for (int i = 0; i < hexString.Length / 2; i++)
            {
                c = hexString[i * 2];
                b[i] = (byte)((c < 0x40 ? c - 0x30 : (c < 0x47 ? c - 0x37 : c - 0x57)) << 4);
                c = hexString[i * 2 + 1];
                b[i] += (byte)(c < 0x40 ? c - 0x30 : (c < 0x47 ? c - 0x37 : c - 0x57));
            }
    
            return b;
        }
    
        public static string BytesToHex(this byte[] barray, bool toLowerCase = true)
        {
            byte addByte = 0x37;
            if (toLowerCase) addByte = 0x57;
            char[] c = new char[barray.Length * 2];
            byte b;
            for (int i = 0; i < barray.Length; ++i)
            {
                b = ((byte)(barray[i] >> 4));
                c[i * 2] = (char)(b > 9 ? b + addByte : b + 0x30);
                b = ((byte)(barray[i] & 0xF));
                c[i * 2 + 1] = (char)(b > 9 ? b + addByte : b + 0x30);
            }
    
            return new string(c);
        }
    
    static string ByteToHexBitFiddle(byte[] bytes)
    {
            var c = stackalloc char[bytes.Length * 2 + 1];
            int b; 
            for (int i = 0; i < bytes.Length; ++i)
            {
                b = bytes[i] >> 4;
                c[i * 2] = (char)(55 + b + (((b - 10) >> 31) & -7));
                b = bytes[i] & 0xF;
                c[i * 2 + 1] = (char)(55 + b + (((b - 10) >> 31) & -7));
            }
            c[bytes.Length * 2 ] = '\0';
            return new string(c);
    }
    
        static public byte[] HexStrToByteArray(string str)
        {
            byte[] res = new byte[(str.Length % 2 != 0 ? 0 : str.Length / 2)]; //check and allocate memory
            for (int i = 0, j = 0; j < res.Length; i += 2, j++) //convert loop
                res[j] = (byte)((str[i] % 32 + 9) % 25 * 16 + (str[i + 1] % 32 + 9) % 25);
            return res;
        }