Answers for "How do you convert a byte array to a hexadecimal string, and vice versa?"

0

How do you convert a byte array to a hexadecimal string, and vice versa?

public static string ByteArrayToString(byte[] ba)
{
  StringBuilder hex = new StringBuilder(ba.Length * 2);
  foreach (byte b in ba)
    hex.AppendFormat("{0:x2}", b);
  return hex.ToString();
}

public static string ByteArrayToString(byte[] ba)
{
  return BitConverter.ToString(ba).Replace("-","");
}


//The reverse conversion would go like this:
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;
}
Posted by: Guest on September-08-2021

Code answers related to "How do you convert a byte array to a hexadecimal string, and vice versa?"

Browse Popular Code Answers by Language