How would you serialize an assembly? An assembly defines a set of types,
not a runtime grouping of those types.
Do you mean how do you mark a class as serializeable? If you want an
application "instance" serialized as a whole you do that by marking all the
classes as serializeable. Then serialize the main class instance (object)
that holds a reference to all other objects (such as an "Application"
class).
[Serializable]public class Application{...}
[Serializable]public class Document{...}
etc...
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.