Tagged Questions
1
vote
2answers
534 views
Byte serialization
I recently had a discussion with a colleague about serialization of byte data over a network.
He used the BinaryFormatter class to "unparse" the byte data I was sending to him. This did not work and ...
0
votes
3answers
1k views
Convert object to byte[]
I am trying to convert a retrieved registry value from object to byte[]. It is stored as REG_BINARY. I tried using BinaryFormatter with MemoryStream. However, it adds overhead information that I do ...