Show decoded and hex view of data taken from tested media.

This commit is contained in:
2019-11-20 00:13:35 +00:00
parent 38e59c1519
commit 6937468728

View File

@@ -50,6 +50,9 @@ namespace DiscImageChef
/// <returns>String containing hexadecimal values</returns>
public static string ByteArrayToHexArrayString(byte[] array, int width = 16, bool color = false)
{
if(array is null)
return null;
// TODO: Color list
// TODO: Allow to change width
string str = "Offset";