Save multiple objects to single file vb.net

477 Views Asked by At

Greeting,

I am trying to save multiple type of objects to a single file, objects are a custom class that I am able to serializable and another object is a word document that is not being able to serialize via binary. Is there a way to save multiple objects to one file using vb, also would it be possible to save files like how a docx is saved, that is a .zip renamed as docx but get access to inner objects.

I am trying to do in vb.net.

1

There are 1 best solutions below

0
On BEST ANSWER

I think I found a method to do it manually by way of using System.IO.ZipPackaging and BinarySerialization when necessary. Thank you.