I have been messing with readallbytes/writeallbytes...
I saw this function from a previous post.. to convert a file to its hex values
What would be the easiest way to now have it re-write those bytes from Hex back to the original bytes and save it as a file..???
thanks
I saw this function from a previous post.. to convert a file to its hex values
Code:
RichTextBox1.Text = String.Join("", IO.File.ReadAllBytes("File Path here").Select(Function(b) b.ToString("X2")).ToArray())thanks