Can I hex edit a file in Visual Studio?

Visual StudioEditorBinaryfiles

Visual Studio Problem Overview


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?

Visual Studio Solutions


Solution 1 - Visual Studio

  1. Menu FileOpenFile
  2. Select the file to be opened
  3. On the open file dialog at the bottom there is a down arrow on the "Open" button
  4. Click "Open With..."
  5. Click "Binary Editor"
  6. Click OK

Or for the keyboard geeks out there:

  1. Ctrl + o
  2. Ctrl + v (paste filename)
  3. tab
  4. tab
  5. w
  6. b
  7. Enter

Solution 2 - Visual Studio

In addition to Kevin's answer, with Visual Studio 2017 you need to have the Visual Studio C++ Core Features component installed.

Source

Solution 3 - Visual Studio

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

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionKevin DriedgerView Question on Stackoverflow
Solution 1 - Visual StudioKevin DriedgerView Answer on Stackoverflow
Solution 2 - Visual StudiojordanbtuckerView Answer on Stackoverflow
Solution 3 - Visual Studiosilver arrowView Answer on Stackoverflow