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...
Now you need to ensure all the classes serialize properly... Basic,
Selective, or Custom. See the following link:
http://msdn.microsoft.com/library/de...ialization.asp
Let me know if this helps.
--
Michael Lang, MCSD
"shail" <(E-Mail Removed)> wrote in message
news:0d5c01c368ba$2f7fdb60$(E-Mail Removed)...
> How to mark assembly serializable?
> Thank You.
>