Convert a Byte Array to a Hexadecimal String January 15, 2019 The BitConvertor class can convert a byte array to a string in C#, as shown below: string convertedValue = BitConverter.ToString(byteArray).Replace(“-“,””);