So I have a gigantic byte-array that represents a data packet. There's various parts of the packet such as a header, message body, stop bits, etc. How can I create variables of the various parts of the array such that when I reference the variable I'm editing the sub-array? I'd like to use the dot notation so that referencing ByteArrayRepresentingPacket.Header would actually reference ByteArrayRepresentingPacket[0], ByteArrayRepresentingPacket.MessageBody would actually reference ByteArrayRepresentingPacket[1] through ByteArrayRepresentingPacket[8], etc. A structure seems suited for this, but how would I translate the structure into a byte-array when I need to pass it?
|
|
|||
|
|
|
You're better off not worrying about forcing your packet structure to be stored as a byte array. The CPU cost of converting to and from a byte array, and the memory costs of the temporary duplicate storage are most likely insignificant. Create a class or set of classes to represent your data structure, and then use If you really want to use a structure, look into the EDIT: Another thought, if you were stuck with a big byte array, and you really wanted to access chunks of it by name, I would create an implementation of
|
|||||
|
|
|||
|
|
|
So I ended up going with a structure (like I had hoped I could). Here's the implementation:
I kept everything as |
|||
|
|