Answers for "c# byte array in hex string"

C#
3

byte array to hex c#

public static string ByteArrayToString(byte[] ba)
{
  return BitConverter.ToString(ba).Replace("-","");
}
Posted by: Guest on December-16-2020

C# Answers by Framework

Browse Popular Code Answers by Language