Hello guys and gals,
I've written classes with serializable attribute before but all of them were just "standalone" classes. By saying "standalone", I mean the class itself does not refer to other custom classes within the same application.
Now I have a need to write a serializable class that DOES refer to my other custom classes. For example, I have ClassA and ClassB. ClassB will be serializable. One of the properties in classB returns a ClassA object. My question is, in order for classB to be serializable, does ClassA also needs to be serializable?
Thanks for any inputs.
Stanav.