Tagged Questions
0
votes
4answers
1k views
Is there a BinaryReader in C++ to read data written from a BinaryWriter in C#?
I've written several ints, char[]s and the such to a data file with BinaryWriter in C#. Reading the file back in (in C#) with BinaryReader, I can recreate all of the pieces of the file perfectly.
...