The file format I'm working with (OFX) is XML-like and contains a bunch of plain-text stuff before the XML-like bit begins. It doesn't like having between the plain-text and XML parts though, so I'm wondering if there's a way to get XmlSerialiser to ignore that. I know I could go through the file and wipe out that line but it would be simpler and cleaner to not write it in the first place! Any ideas?
|
feedback
|
|
Not too tough, you just have to serialize to an explicitly declared XmlWriter and set the options on that writer before you serialize.
| ||||
|
feedback
|
|
You'll have to manipulate the XML writer object you use when calling the
| ||||
feedback
|