J
Jesper Denmark
Hi,
Is deep serialization possible using XML. Know any good
tutorials?.
By deep serialization I mean the ability that an object
being serialized automatically serialize its members. E.g
Class A
{
public string x;
}
Class B
{
public string y;
public A a;
}
When serializing B an xml output like:
<classBroot>
<y>y-string</y>
<classAroot>
<x>x-string</x>
</classAroot>
<classBroot>
Is deep serialization possible using XML. Know any good
tutorials?.
By deep serialization I mean the ability that an object
being serialized automatically serialize its members. E.g
Class A
{
public string x;
}
Class B
{
public string y;
public A a;
}
When serializing B an xml output like:
<classBroot>
<y>y-string</y>
<classAroot>
<x>x-string</x>
</classAroot>
<classBroot>