This is probably a common question over the Internet, but I couldn't find an answer that neatly explains how you can convert a byte array to a hexadecimal string, and vice versa.
Any takers?
|
12
|
This is probably a common question over the Internet, but I couldn't find an answer that neatly explains how you can convert a byte array to a hexadecimal string, and vice versa. Any takers?
|
||||
|
|
|
Either:
or:
There are even more variants of doing it, for example here. The reverse conversion would go like this:
|
||||||||||||
|
|
|
And to steal Tomalak's thunder... EXTENSION METHODS :) [disclaimer: completely untested code, btw .. just thought i'd add a quick post]
etc.. use either of his three solutions (with the last one being an extension method on a string) |
||
|
|
|
|
You can use BitConverter.ToString Method:
Output:
More Info: http://msdn.microsoft.com/en-us/library/3a733s97.aspx |
||
|
|
|
|
If you want more flexibility than BitConverter, but don't want those clonky 90s-style explicit loops, then you can do: String.Join(String.Empty, Array.ConvertAll(bytes, x => x.ToString("X2")) |
||
|
|
|
|
Since littering this among a half-dozen comments wouldn't be as easy to scan, I am going to make it an answer. That said, it doesn't really deserve any votes, but it is still pretty useful knowledge pertaining to the question, and it definitely looks better with the code formatted as such. I ran each of the given "ToString" methods through some crude On a random sentence of n=46, it was a ratio of 1:2:3 for In case anyone wants to play with my testing code, I have included it; just slap it into a new console app. It isn't pretty (or very easily extended to other tasks, but it still gives a pretty good idea which method is faster.
|
||||
|
|
|
I just encountered the very same problem today and I came across this code:
Source: http://social.msdn.microsoft.com/Forums/en-US/csharpgeneral/thread/3928b8cb-3703-4672-8ccd-33718148d1e3/ (see the post by PZahra) I modified the code a little to remove the 0x prefix I did some performance testing to the code and it was almost 8 times faster than using BitConverter.ToString() (the fastest according to patridge's post) |
||
|
|
|
And for inserting into an SQL string (if you're not using command parameters):
|
||
|
|