how do I include the serialized data from a child class where both impliment iserializeable?
Class A
Implements ISerializable
dim _B as new B
Class B
Implements ISerializable
dim _C as integer
end class
end class
I need to be able to serialize object B s data along with the data that is being serialized via the GetObjectData method for class A. In my use case Class A also happens to be a derived class.