P
Peter Steele
I have a managed C++ project that contains a simple structure:
struct
{
<multiple members>
} mydata;
I want to write the contents of this structure out to disk retaining the
exactly binary data without any additional header information, and of course
be able to later read it back in. What's the best way to accomplish this?
struct
{
<multiple members>
} mydata;
I want to write the contents of this structure out to disk retaining the
exactly binary data without any additional header information, and of course
be able to later read it back in. What's the best way to accomplish this?