Can I hex edit a file in Visual Studio?

Viewed 103055

I want to edit a binary file, but I don't want to use another tool other than Visual Studio because it's a pain to switch back and forth.

Is there perhaps an add-in or some built in functionality that can do that in Visual Studio?

4 Answers

Another way to do it is to rename your file to .bin and drag it into VS editor

  1. right click the file in Solution Explorer,
  2. select 'Open With...'
  3. select 'Binary Editor'

Let's enjoy the hex world :)

enter image description here

Related