Possible to group bytes?
See original GitHub issueHi, I want to use the hex editor control to group some bytes into custom groups. Just like in cheat-engine Memory View 4byte display mode For example I have:
30 17 b5 a2 5d 7c bc b0 ...
Then I want to make it so I can group the first 4 bytes and display them as an Int32
.
(So the first 4 bytes are hidden, and the space they left is filled by one big integer).
I also want to have fine-grained control over what bytes get grouped into what group.
So for example I want to group byte 0-4 into an Int32, and then leave 1 byte as it is, then group 6-7 into a custom display…
I’m experienced with wpf but I’m not sure about the best/intended workflow. Can you give a rough outline of how one could accomplish this? @abbaye
Issue Analytics
- State:
- Created 6 years ago
- Comments:6 (5 by maintainers)
Top Results From Across the Web
Number of combinations of bytes ordered by value
1 byte can store 256 possible combinations (2^8). 2 bytes can store 65536 possible combinations (2^16). 3 bytes can store 16777216 possible ......
Read more >What is a group of bytes called?
There is no particular name for a group of bytes. The common terms are WORD (2 bytes), DWORD (4 bytes) and QWORD (8...
Read more >Working with Bytes
A byte is a group of 8 bits. A bit is the most basic unit and can be either 1 or 0. A...
Read more >Byte
The byte is a unit of digital information that most commonly consists of eight bits. ... Another origin of byte for bit groups...
Read more >Bits and Bytes
1 byte is group of 8 bits; 8 bits can make 256 different patterns; How to use the 256 patterns? How to store...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I see, so derive from IByteControl. Thank you for your input, I will try that and report back 😃
if you have questions please let me know