Is There Such a Thing as Case-insensitive XML Deserialisation?

C

Charles Law

I have created some files in the form

<xml ...
<MYOBJECT>
....
</MYOBJECT>

using an xml serializer.

I then ran FxCop and it complained that MYOBJECT should be MyObject, so I
changed it in my code (what was I thinking of!). Now I cannot read my files
unless I change them all to

<xml ...
<MyObject>
....
</MyObject>

Is there a way of making the xml serializer case-insensitive?

TIA

Charles
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top