Hex Visualizer 2015Hex viewer visualizer provides a visualizer for byte arrays so as to display them in a mini hex visualizer. Very useful for debugging network packets and binary files. NOTE: This version is for VS2015 - for VS2017 you will need to get it from https://marketplace.visualstudio.com/items?itemName=Mika76.HexVisualizer2017 UseI think in Vs2015 that you should be able to get this on a byte[] array, but if not (as in previous VS versions) you can do the following... When on a breakpoint, in your watch window create a new row with "new WeakReference(p)" where p is your byte[] variable. This will then allow you to visualize the Weak Reference. SourceThe source can be found at https://bitbucket.org/mmihajlovic/hex-visualizer CreditUses the Be.Hex control from Be.HexEditor (.NET C# hex edit control) |