Skip to content

Instantly share code, notes, and snippets.

@dkalamari
Created June 16, 2014 08:25
Show Gist options
  • Save dkalamari/f3e113ad0e79fd4642fe to your computer and use it in GitHub Desktop.
Save dkalamari/f3e113ad0e79fd4642fe to your computer and use it in GitHub Desktop.
ByteArrayToString
protected static String ByteArrayToString(byte[] inArray)
{
StringBuilder outString = new StringBuilder("");
for (int i = 0; i < inArray.Length; i++)
{
outString.Append(inArray[i].ToString("X2"));
}
return outString.ToString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment