How to convert byte array to a hex string in C#
This below example will show you how to convert a byte array to a hexadecimal string in C#.
Using the BitConverter.toString()
method
using System;
class ByteArraytohex{
static void Main() {
byte[] bytes = { 65, 66, 67, 68 };
string s1 = BitConverter.ToString(bytes).Replace("-","");;
Console.WriteLine(s1);
}
}
Output:
41424344