private string ConvertToHexString(string filePath)
{
byte[] contentAsBytes = File.ReadAllBytes(filePath);
string contentAsHexString = BitConverter.ToString(contentAsBytes).Replace("-", "");
return contentAsHexString;
}
private string ConvertToHexString(string filePath)
{
byte[] contentAsBytes = File.ReadAllBytes(filePath);
string contentAsHexString = BitConverter.ToString(contentAsBytes).Replace("-", "");
return contentAsHexString;
}