views:

36

answers:

1

I have a problem when I convert an object to XML. The result is like

<Entry From=\"08:46:07\" To=\"20:47:06\" TypeId=\"1\" />

and I want to remove the \ in the XML. How can I do this?

+3  A: 

Are those slashes actually there?

This is what you would see in the debugger when looking at a string with quotes but without \.

Henk Holterman