I disagree with this. You should be able to write them to a binary file
without issue and read them from your unmanaged C++ ...
Are you thinking the other direction Nicholas? Even then you should be able
to read them without too much of a problem.
Cheers,
Greg Yong
"Nicholas Paldino [.NET/C# MVP]" <mv*@spam.guard.caspershouse.comwrote in
message news:uO****************@TK2MSFTNGP03.phx.gbl...
Bit byte,
You could, but you would have to use unmanaged functions through the
P/Invoke layer (specifically, the ReadFile method) and unsafe code (so you
can get a direct pointer to the structure to populate).
Hope this helps.
--
- Nicholas Paldino [.NET/C# MVP]
- mv*@spam.guard.caspershouse.com
"Bit byte" <fl**@flop.comwrote in message
news:J5********************@bt.com...
>If I write data from structures to a binary file in C#, can I read back
the file using "unmanaged" C++ ?