How can I serialize or make it pof of an Object Array
789663Aug 31 2010 — edited Oct 22 2010Hi,
How can we serialize or POF an Custom Object Array Using PofWriter.writeObjectArray() method.
Ex:
Public class ClassA{
int a;
int b;
InfoClass[] infoClass;
}
Public InfoClass{
String name;
int age;
}
Assuming that both class are POF enabled. What should be the writeExternal Implementation for serializing InfoClass[].