> Hi,
> I have a class with some properties. When I return the object from Web
[quoted text clipped - 5 lines]
> Many thanks,
> ddt
It's just using the XmlSerializer to do it's work, so you can do the same. The simplest example I can think of:
<codeSnippet language="C#">
XmlSerializer serializer = new XmlSerializer(typeof(YourTypeHere))
StringWriter writer = new StringWriter();
serializer.Serialize(writer, yourInstance);
Debug.WriteLine(writer.ToString());
</codeSnippet>
HTH,
Drew
ddt - 02 Nov 2004 18:06 GMT
Thanks a lot Drew.
ddt
> > Hi,
> > I have a class with some properties. When I return the object from Web
[quoted text clipped - 20 lines]
> HTH,
> Drew