For certain file operations we use VB6\'s PropertyBag object to convert various items to a bytearray via the Content property. We then save the bytearray as part of a binary fil
You can check out Edanmo's Load and save pictures to byte arrays sample on his old VB6 sample page. It's very simple and can be used to "serialize" any object that implements IPersistStream interface like ADODB.Recordset for example. VB6's PropertyBag is using IPersistStream for objects and probably implements "custom" VT_Xxx variant-types serialization.
Btw, Edanmo's code snippet allows you to read images stored via copy/paste to an image column of an Access grid.
It is worth pointing out that you can directly access the VB6 PropertyBag from .NET by referencing the VB6 runtime DLL in your project.
Add a reference to: C:\WINDOWS\SysWow64\MSVBVM60.DLL
(or might by in System32 folder)
and you will then see PropertyBag in the object browser:
Note that this VB6 class does not have functionality for reading/writing to disk files, byte arrays, etc. It only manages the in-memory data (AFAIK). So this alone does not solve the issue of how to save/load data in whatever format the PropertyBag was stored in.
There is 0 support for PropertyBags in .NET. Serailisation of objects replaces the PropertyBag construct.
So as I see it you have 2 choices.
I know which one I'd be heading for.