Convert hex string to byte array - Stack Overflow most recent 30 from stackoverflow.com2009-12-20T00:47:39Zhttp://stackoverflow.com/feeds/question/321370http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/321370/convert-hex-string-to-byte-array0Convert hex string to byte arrayBlankman2008-11-26T16:45:53Z2009-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#3213883Answer by Bob for Convert hex string to byte arrayBob2008-11-26T16:51:21Z2008-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#3213900Answer by InsDel for Convert hex string to byte arrayInsDel2008-11-26T16:52:28Z2008-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 < 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#3214042Answer by JaredPar for Convert hex string to byte arrayJaredPar2008-11-26T16:56:24Z2009-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 => 0 == x % 2).
Select(x => Convert.ToByte(hex.SubString(x,2), 16)).
ToArray();
}
</code></pre>
http://stackoverflow.com/questions/321370/convert-hex-string-to-byte-array/1822323#18223230Answer by may for Convert hex string to byte arraymay2009-11-30T20:54:23Z2009-11-30T20:54:23Z<p>Convert.ToByte
in which package?</p>