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

  • Thread starter Thread starter Charles Law
  • Start date Start date
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
 
Back
Top