Convert hex string to byte array - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T00:47:39Z http://stackoverflow.com/feeds/question/321370 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/321370/convert-hex-string-to-byte-array 0 Convert hex string to byte array Blankman 2008-11-26T16:45:53Z 2009-11-30T20:54:23Z <p>Hi,</p> <p>Can we converting a hex string to a byte array using a built-in function in C# or I have to make a custom method for this?</p> http://stackoverflow.com/questions/321370/convert-hex-string-to-byte-array/321388#321388 3 Answer by Bob for Convert hex string to byte array Bob 2008-11-26T16:51:21Z 2008-11-26T16:51:21Z <p><a href="http://stackoverflow.com/questions/311165/how-do-you-convert-byte-array-to-hexadecimal-string-and-vice-versa-in-c">http://stackoverflow.com/questions/311165/how-do-you-convert-byte-array-to-hexadecimal-string-and-vice-versa-in-c</a></p> http://stackoverflow.com/questions/321370/convert-hex-string-to-byte-array/321390#321390 0 Answer by InsDel for Convert hex string to byte array InsDel 2008-11-26T16:52:28Z 2008-11-26T16:52:28Z <p>See <a href="http://stackoverflow.com/questions/311165/how-do-you-convert-byte-array-to-hexadecimal-string-and-vice-versa-in-c">this question</a>.<br /> Tomalak's answer: </p> <pre><code>public static byte[] StringToByteArray(String hex) { int NumberChars = hex.Length; byte[] bytes = new byte[NumberChars / 2]; for (int i = 0; i &lt; NumberChars; i += 2) bytes[i / 2] = Convert.ToByte(hex.Substring(i, 2), 16); return bytes; } </code></pre> http://stackoverflow.com/questions/321370/convert-hex-string-to-byte-array/321404#321404 2 Answer by JaredPar for Convert hex string to byte array JaredPar 2008-11-26T16:56:24Z 2009-11-24T18:05:14Z <p>Here's a nice fun LINQ example.</p> <pre><code>public static byte[] StringToByteArray(string hex) { return Enumerable.Range(0, hex.Length). Where(x =&gt; 0 == x % 2). Select(x =&gt; Convert.ToByte(hex.SubString(x,2), 16)). ToArray(); } </code></pre> http://stackoverflow.com/questions/321370/convert-hex-string-to-byte-array/1822323#1822323 0 Answer by may for Convert hex string to byte array may 2009-11-30T20:54:23Z 2009-11-30T20:54:23Z <p>Convert.ToByte in which package?</p>