I've got this, which I found someone on here:
As you can see it displays the bytes from the file opened in "OpenFileDialog1". Is it as simple as changing "OpenFileDialog1.Filename" to something to view a processes RAM? Or is it more complex?
Code:
TextBox1.Text = String.Join(" ", IO.File.ReadAllBytes(OpenFileDialog1.FileName).Select(Function(b) b.ToString("X2")).ToArray())