I copied and pasted this binary data out of sql server, which I am unable to query at this time.
0xBAC893CAB8B7FE03C927417A2A3F6A60BD30FF35E250011CB25507EBFCD5223B
How do I convert it back to a byte array in c#?
|
|
|
Something like this:
(EDIT: Now slightly more efficient - no substrings required...) It's possible that
or possibly a lookup array:
I haven't benchmarked any of these, and I've no idea which would be the fastest. The current solution is probably the simplest though. |
|||||||||||
|
|
Consider leveraging a Framework class that already exposes the ability to perform hex conversion, XmlReader for example:
usage:
|
|||
|
|
|
Simple:
All you have to remember to do is for an int to divide the hex number up into groups of 8 hex digits (hex are 4 bits each, and CLR int type is 32 bits, hence 8 digits per int). There's also a byte.Parse() that works the same, but pass in two hex digits at a time. |
|||||||
|
|
You will need to modify this a little bit (for example, skip over the first two characters), but it does handle spaces in the string:
|
|||
|
|
|
Something like this:
|
|||
|
|
|
Slow yet fun way :D
-jD |
|||
|
|
|
Actually, there's an easier way to convert two characters at a time to a byte:
|
||||
|
|