I've got a 3rd party COM object that implements the IPersistStream COM Interface.
I need to write a serialize/deserialize method for these COM Objects.
public byte[] Serialize(MyComObject obj){ ... }
public MyComObject DeSerialize(byte[] bytes) { ... }
the methods i'm interested in are Load() and Save(), however, neither returns anything and my pointer skills are a bit rusty.
public interface IPersistStream
{
void GetClassID(out Guid pClassID);
void GetSizeMax(out long pcbSize);
int IsDirty();
void Load(IStream pStm);
void Save(IStream pStm, bool fClearDirty);
}
Does anyone have any sample code for using the IStream interface within .net C# to achieve this?
Apologies if this isn't enough information.