In C# I open a MemoryStream and use the BinaryFormatter to serialize an object[]. I need to do the same thing in VB6, and I need the two to match exactly. Is this possible?
In C# I open a MemoryStream and use the BinaryFormatter to serialize an object[].
Share
Sincerely doubtful. Binary serialization is not guaranteed to be compatible between versions of .NET let alone back to VB 6. XML serialization might be able to help you here.