vote up -1 vote down star

Hi,

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?

flag

21% accept rate

3 Answers

vote up 0 vote down

See this question.
Tomalak's answer:

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;
}
link|flag
vote up 0 vote down

Here's a nice fun LINQ example.

public static[] StringToByteArray(string hex) {
  return Enumerable.Range(0,hex.Length).
         Where(x => 0 == x % 2).
         Select(x => Convert.TyByte(hex.SubString(x,2), 16)).
         ToArray();
}
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.