VB6 中的二进制序列化?
在 C# 中,我打开 MemoryStream 并使用 BinaryFormatter 序列化对象[]。我需要在 VB6 中做同样的事情,并且我需要两者完全匹配。这可能吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
诚心存疑。二进制序列化不保证在 .NET 版本之间兼容,更不用说回到 VB 6。XML 序列化可能会在这方面为您提供帮助。
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.
在 C# 中创建 COM 可见 DLL,并在需要序列化时从 VB6 调用它。
Create a COM visible DLL in C# and call it from VB6 when you need to serialize.